点击删除表格中的行并提交到数据库

Posted benbenbai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击删除表格中的行并提交到数据库相关的知识,希望对你有一定的参考价值。

html中:

<el-table-column prop="operation" label="操作" width="170">
<template slot-scope="scope">
<el-button size="small" type="danger" @click="deleteRow(scope.$index,scope.row)">删除</el-button>
</template>
</el-table-column>

data中:
myId:‘‘,

methods中:
deleteRow(index,row){
this.$confirm(‘此操作将永久删除该文件, 是否继续?‘, ‘提示‘, {
confirmButtonText: ‘确定‘,
cancelButtonText: ‘取消‘,
type: ‘warning‘
}).then(() => {
this.myId=this.measureTable[index].partDesignSizeId; //this.measureTable为表格 partDesignSizeId为每个行的特殊id号

//删除ajax
this.$ajax({
method: ‘get‘,
url: ‘/manage/measure/delete/design/size/by/id‘,
params:{
partDesignSizeId: this.myId,
},
}).then((response) =>{
var resData = response.data;
if (resData.success) {
this.$message({
type: ‘success‘,
message: ‘删除工艺成功!‘
});
this.measureTable.splice(index,1)
} else {
alert(resData.message);
}
})
}).catch(() => {
this.$message({
type: ‘info‘,
message: ‘已取消删除‘
});
});
},

以上是关于点击删除表格中的行并提交到数据库的主要内容,如果未能解决你的问题,请参考以下文章

如何在php中存储li标签的值并提交到数据库中

idea本地将本地现有的项目和gitlab进行管理并提交到线上

git 本地重命名文件夹大小写并提交到远程分支

创建本地Git并提交到码云

Git创建/合并分支并提交到远程仓库(结合vscode)

Git 创建新分支并提交到远程仓