this.$ajax({ method: 'delete', url: '/api/commodityCategory/delete', data: { "id":"a" }, }) .then(function(response) { console.log(response); }) .catch(function(response) { console.log(response); });这样写好像毫无反应,也没有回报.看文档貌似也没有例子this.$ajax 在vue的main.js配置过了
2 回答
至尊宝的传说
TA贡献1789条经验 获得超10个赞
axios.delete({
url: '/api/commodityCategory/delete',
data: {
"id":"a"
}
})
.then(function(response) {
console.log(response);
})
.catch(function(response) {
console.log(response);
});
或者:
axios({
method: 'delete',
url: '/api/commodityCategory/delete',
data: {
"id":"a"
}
})
.then(function(response) {
console.log(response);
})
.catch(function(response) {
console.log(response);
});
侃侃无极
TA贡献2051条经验 获得超10个赞
axios说实话我没见过你所写的methods这个属性
delete应该是axios的一个方法
你应该axios.delete(url).then(res=>{}) 这种格式
添加回答
举报
0/150
提交
取消