如题,我clone了Angular-webpack-Starter项目,现在想把nodeJS作为后端来模拟数据,要怎么改呢?
认证0级讲师
Found the answer! Add config/webpack.dev.js inside devServer of
config/webpack.dev.js
devServer
proxy: { '/api/*': 'http://<YOUR_BACKEND_HOST>:<YOUR_BACKEND_PORT>', },
For example:
devServer: { port: METADATA.port, host: METADATA.host, historyApiFallback: true, watchOptions: { aggregateTimeout: 300, poll: 1000 }, outputPath: helpers.root('dist'), proxy: { '/api/*': 'http://localhost:1234' } },
Corresponding nodeJS code:
const express = require('express'); const app = express(); app.get('/', function(req,res){ console.log('got it'); res.send().end(); }); app.get('/api/datas', function(req,res){ console.log(req.baseUrl); res.send({datas: [1,2,3,4,5]}).end(); }) app.listen('1234',function(){ console.log('running on 1234 port'); });
Found the answer!
Add
config/webpack.dev.js
insidedevServer
ofFor example:
Corresponding nodeJS code: