怎么在express中使用axios?
在express
配置中已经使用了中间件http-proxy-middleware
并且配置了转发
app.use('/api', proxy({
target: 'http://x.x.x.x.',
changeOrigin: true,
pathRewrite: {
'^/api': '/'
}
}));
而在 app.get 方法中使用 axios 的时候会报错:
app.get('/index/test', function(req, res) {
axios.get('/api/index/getdata.html?page=1') // 这里如果写成 http://x.x.x.x/index/getdata.html?page=1 就不会报错
.then(result=>{
console.log(result);
return res.send('test');
})
});
output
(node:12952) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error: Request failed with status code 404
(node:12952) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
其中我想要使用 /api ,不知道怎么实现?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你这里需要指定协议,域名和端口呀,不然它怎么知道你去请求哪儿;
不像浏览器,浏览器访问一个网站,这些都知道了的
在这儿可以使用
http://127.0.0.1:port/api
调整代理
在你的vue文件中引入
axios
,然后使用,如下:以上