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属性
查了很久了,试了很多方法都无效,请问是什么问题??


慕田峪4524236
浏览 3119回答 1
1回答

蝴蝶刀刀

把路由配置的get改为post但这样只能用post我是写了俩
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript