vue.config.js:
devServer: { before: function (app) { app.get('/aaa', (req, res) => { res.json({ errno: 0, data: { id: 1, name: '小明' } }) }) } }
App.vue:
created() { axios.get('/aaa').then((res) => { console.log(res.data) }) }
打印结果:
2023-09-27 19:11:10
vue.config.js:
devServer: { before: function (app) { app.get('/aaa', (req, res) => { res.json({ errno: 0, data: { id: 1, name: '小明' } }) }) } }
App.vue:
created() { axios.get('/aaa').then((res) => { console.log(res.data) }) }
打印结果: