2

我的应用程序的 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;
    }
}

有谁知道我如何确保将获取请求发送到正确的路径?

4

1 回答 1

1

我在 webpack gitter 上问了这个问题,有人向我指出了output.publicPath解决问题的方向。

于 2015-11-26T16:12:57.503 回答