我克隆了一个 angular2-webpack-starter 项目,它运行良好;现在我想向这个项目添加一个单独的 NodeJS 服务器(我需要用 NodeJS 模拟一些数据作为后端),但不知道如何以及从哪里开始,有人可以帮忙吗?
此问题已解决,只需在 config/webpack.dev.js 中配置 devServer 的代理即可:
module.exports = {
entry:{...},
...
devServer: {
host: 'localhost',
port: 8086, //frontend port
historyApiFallback: true,
noInfo: true,
watchOptions: {
aggregateTimeout: 300,
poll: 100
},
outputPath: '/',
proxy: {
'/api/*': { //backend url prefix, some thing like '/api/users/:userId'
target: 'http://localhost:3000', // backend host and port
secure: false
}
}
}
};
我是一名优秀的程序员,十分优秀!