我有一个随我的index.html附加的bundle.js文件。我首先使用动态路径:
app.get('/*', function(req, res) {
res.sendFile(path.join(__dirname + '/src/index.html'));
});
当我连接到localhost:8080 / something时,会发送html但是应该显示该bundle的div是空的。
但是当我将路径更改为静态路径(如app.get('/',..)
)并连接到localhost:8080 /时,将显示该捆绑包。
如何使用动态路径进行此操作?