webpack 和 oclazyload - 为 require() 指定完整 url
webpack and oclazyload - specify full url for require()
我的应用程序 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;
}
}
有谁知道我如何确保向正确的路径发出 get 请求?
我在 webpack gitter 上问了这个问题,有人好心地指出 output.publicPath
的方向,解决了这个问题。
我的应用程序 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;
}
}
有谁知道我如何确保向正确的路径发出 get 请求?
我在 webpack gitter 上问了这个问题,有人好心地指出 output.publicPath
的方向,解决了这个问题。