webfont加载器文档提供了此示例脚本:
WebFontConfig = {
typekit: { id: 'xxxxxx' }
};
(function(d) {
var wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.16/webfont.js';
s.parentNode.insertBefore(wf, s);
})(document);
如果我将其直接放在我页面<head>
的脚本标记中,则可以正常使用。
如果我将它包装在一个函数中并尝试导出它,我会在控制台中收到此错误:
未捕获的ReferenceError:未定义WebFontConfig
以下是我试图包装它的方式:
function initialiseWebFontLoader() {
WebFontConfig = {
google: {
families: ['Open Sans', 'Lora']
},
timeout: 1500
};
(function(d) {
const wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.16/webfont.js';
s.parentNode.insertBefore(wf, s);
})(document);
}
module.exports = {
initialiseWebFontLoader: initialiseWebFontLoader
};
我在这里做了一些明显错误的事吗?
答案 0 :(得分:0)
哦,我需要将WebFontConfig
附加到窗口对象。
window.WebFontConfig
。