我正在尝试使用 require.js 加载Heyoffline我尝试了 shim config
require.config({
paths : {
heyoffline : "libs/heyoffline"
},
shim: {
'heyoffline': {
exports: 'Heyoffline'
}
}
});
在模块文件中。
define(["heyoffline"], function (Heyoffline) {
new Heyoffline;
}
其他部门正在加载没有问题。
我只得到以下异常:
Uncaught TypeError: undefined is not a function