We're sorry but e-bike doesn't work properly without JavaScript enabled. Please enable it to continue.
We're sorry but e-bike doesn't work properly without JavaScript enabled. Please enable it to continue.
vue-cli搭建的项目,用express模拟后端接口返回数据。我是因为代理端口号没设置对出现过这个问题。express和vue-cli是2个服务,都需要启动,然后配置代理如下:
devServer: {
host: 'localhost',
port: 8080,
proxy: {
'/mock': {
target: 'http://localhost:19021/',
pathRewrite: {
'^/mock': ''
}
}
}
}
app.js:
app.get('/bbb', (req, res) => res.send('Hello World!'))
接口请求:
fetch('/mock/bbb').then()
6 回答3k 阅读✓ 已解决
8 回答4.8k 阅读✓ 已解决
3 回答2.7k 阅读✓ 已解决
6 回答3.5k 阅读✓ 已解决
3 回答4.1k 阅读✓ 已解决
5 回答2.9k 阅读✓ 已解决
6 回答2.4k 阅读
部署的有问题。
你大概用了 history 模式的前端路由。