vue-resource中使用post方法请求json报404错误
使用vue-resource请求json文件时,使用get方法是可以获取到的
this.$http.get('./static/json/banner.json')
.then((response) => {
console.log(response.data);
}).catch((response) => {
console.log(response);
});
但是使用post就报404错误了
this.$http.post('./static/json/banner.json', {})
.then((response) => {
console.log(response.data);
}).catch((response) => {
console.log(response);
});
修改过emulateJSON属性与emulateHTTP属性
将路径改成http://localhost:8080/static/...过
给实例修改过headers属性
查了很久了,试了很多方法都无效,请问是什么问题??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
把路由配置的get改为post
但这样只能用post
我是写了俩