我正在使用 require.js 构建一个应用程序。对于某些部分,我还需要加载使用 require.js 构建的 3rd-Party 脚本(它全部被缩小并使用 almond.js 构建到单个文件中)。
为此,我注入脚本标签,如:
var script = document.createElement('script');
script.type = 'text/javascript';
script.async = true;
script.onload = function(){
// remote widget script has loaded
scriptDfd.resolve();
};
script.src = endpoints.widgetScript + '?appKey=' + auth.userAppKey + '&dev=1';
document.getElementsByTagName('head')[0].appendChild(script);
该脚本可以正常注入并且可以正常工作,但是从那时起,我就不能再使用自己定义的模块映射main.js
了。
当我尝试访问我的模块时引发的错误Uncaught TypeError: Cannot read property 'splice' of undefined
听起来像是它无法再找到该模块(在我注入第 3 方脚本之前很容易访问)。
有什么可行的解决方法吗?