let _this = this, queryParams = [];queryParams.push(_this.currentNodeId);_this.$refs[plantInfo].validate((valid) = {if (valid) {_this.loading = true;_this.$http.delete(/info/tprjinfo, {data: quer...
let _this = this, queryParams = [];
queryParams.push(_this.currentNodeId);
_this.$refs['plantInfo'].validate((valid) => {
if (valid) {
_this.loading = true;
_this.$http.delete('/info/tprjinfo', {
data: queryParams
}).then(({data: res}) => {
if (res.code !== 0) {
_this.loading = false;
return _this.$message.error(res.msg);
}
_this.$message({
message: '站点删除成功!',
type: "success",
duration: 500,
onClose: () => {
_this.visible = false;
_this.getAllSites();
},
});
_this.loading = false;
}).catch((error) => {
console.log(res)
});
} else {
console.log('error submit!!');
return false;
}
});
通过反复测试发现:delete请求的时候不能用params传参,而要用data
沃梦达教程
本文标题为:vue中deletet请求方式进行传参
基础教程推荐
猜你喜欢
- 在实战中可能碰到的几种ajax请求方法详解 2023-02-01
- 使用ajax跨域调用springboot框架的api传输文件 2023-02-23
- Ajax发送和接收请求 2022-12-15
- uniapp开发微信小程序自定义顶部导航栏功能实例 2022-10-21
- 关于Ajax跨域问题及解决方案详析 2023-02-23
- Javascript Bootstrap的网格系统,导航栏和轮播详解 2023-08-11
- cocos creator游戏实现loading加载页面,游戏启动加载动画 2022-10-29
- Ajax+smarty技术实现无刷新分页 2022-12-15
- HTML clearfix清除浮动讲解 2022-11-20
- JS滚动到顶部踩坑解决记录 2023-07-10