這隻能回答你的問題的第二部分:如果你已經捆綁了別名模塊,並且希望這些別名是從上下文requirable:
據我所知,沒有這樣做的沒有官方途徑它與webpack。我創建了一個插件,與節點4個工作(如果你想使用純ES5可以適應),這將增加任何上下文別名列表:
'use strict';
class AddToContextPlugin {
constructor(extras) {
this.extras = extras || [];
}
apply(compiler) {
compiler.plugin('context-module-factory', (cmf) => {
cmf.plugin('after-resolve', (result, callback) => {
this.newContext = true;
return callback(null, result);
});
// this method is called for every path in the ctx
// we just add our extras the first call
cmf.plugin('alternatives', (result, callback) => {
if (this.newContext) {
this.newContext = false;
const extras = this.extras.map((ext) => {
return {
context: result[0].context,
request: ext
};
});
result.push.apply(result, extras);
}
return callback(null, result);
});
});
}
}
module.exports = AddToContextPlugin;
這是你如何使用它:
webpack({
/*...*/
resolve: {
alias: {
'alias1': 'absolute-path-to-rsc1',
'alias2$': 'absolute-path-to-rsc2'
}
},
plugins: [
new AddToContextPlugin(['alias1', 'alias2'])
]
})
它導致如下面的代碼生成:
function(module, exports, __webpack_require__) {
var map = {
"./path/to/a/rsc": 2,
"./path/to/a/rsc.js": 2,
"./path/to/another/rsc.js": 301,
"./path/to/another/rsc.js": 301,
"alias1": 80,
"alias2": 677
};
function webpackContext(req) {
return __webpack_require__(webpackContextResolve(req));
};
function webpackContextResolve(req) {
return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }());
};
webpackContext.keys = function webpackContextKeys() {
return Object.keys(map);
};
webpackContext.resolve = webpackContextResolve;
module.exports = webpackContext;
webpackContext.id = 1;
}
來源
2015-10-22 21:10:16
JBE
爲什麼導入需要動態?你能描述一下情況好一點嗎? –
需要使用的模塊取決於從服務器返回的數據。在我給出的例子中,'moduleAlias'的值來自服務器。 – Aaronius
因爲依賴是動態的,所以你可能需要經過一個單獨的加載器,比如'$ script'。參見[問題150](https://github.com/webpack/webpack/issues/150)。 –