canvas 2d 动态加载自定义字体在开发工具上没有效果,预览调试字体有效果,请问是什么情况呢
- 这样字体预览是有效果的,开发工具版本:Stable 1.05.2102010
loadFontFace() {
const self = this
wx.loadFontFace({
scopes: ['webview', 'native'],
family: 'Aemstel',
source: 'url("https://sungd.github.io/Pacifico.ttf")',
success(res) {
console.log(res.status)
},
fail: function(res) {
console.log(res.status)
},
complete: function(res) {
console.log(res.status)
}
});
},
参考https://developers.weixin.qq.com/community/develop/doc/0004e6152d0eb85fd7da5973456400?_at=1614159501183