我们使用的是Google“ Open Sans”字体。根据以下说明,该字体应支持“小于或等于”(≤)字符:
http://www.fontspace.com/steve-matteson/open-sans/38448/charmap
(向下滚动到数学运算符)
但是在Chrome中,尽管应用了font-family: 'Open Sans'
样式,它仍显示为Arial渲染。这是怎么回事?
答案 0 :(得分:0)
字体(Open Sans)可能在计算机目标浏览器中不可用。在您的css / html中导入了该字体?
关于
router.get('/searchfile', function (req, res) {
const fn = '.*' + req.query.fn + '.*';
db.collection('data').find({"filename": {$regex: fn}},{ _id: 0,filename: 1})
.toArray()
.then(files => {
res.send(files);
}).catch(function (err) {
console.log(err);
});
});
html {
font-family: 'Open Sans'
}