我的应用程序的 javascript 与 index.html 位于不同的域中
这在使用很棒的 ocLazyLoad 时给我带来了问题。延迟加载模块的请求来自 index.html 所在的域。
例如:-
index.html = https://domain.com/index.html
app.bundle.js = https://different-domain.com/js/app.bundle.js
延迟加载包的请求变为 = https://domain.com/1.1.bundle.js
什么时候应该是:https ://different-domain.com/js/1.1.bundle.js
路线解析:
resolve: {
load: function ($q, $ocLazyLoad) {
let deferred = $q.defer();
require.ensure([], function () {
let module = require('./path/to/module.js');
$ocLazyLoad.load({
name: 'moduleName'
});
deferred.resolve(module);
});
return deferred.promise;
}
}
有谁知道我如何确保将获取请求发送到正确的路径?