在使用 app.js中使用
wx.loadFontFace({
global: true,
family: 'sjwbjt',
source: 'url("https://my-font-library.pages.dev/jianhao.ttf")',,
scopes: ["webview", "native"],
success: () => {
console.log("成功");
resolve();
},
fail: () => {
console.log("失败");
reject();
},
});
下列均已经检查没问题
在canvas中
ctx.font = `${maxSize}px sjwbjt`;
模拟器下显示正常,真机ios和安卓均不生效
来个官方回复一下吧,sos