我正在使用@vue/cli,我通过Axios使用本地json文件中的数据填充应用程序。这一切都运行正常,但是当我尝试使用Axios发布到json文件时,它总是返回404说文件无法找到。
我发现这很奇怪,因为它与Get
使用的路径相同,效果很好。
这是我的帖子方法
saveEditPartner() {
axios.post('http://localhost:8081/data.json', {
'partner.name.firstName': this.partnersFullName,
'partner.gender': this.partnersGender,
'partner.dateOfBirth': this.partnersDateOfBirth
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
},