具体代码在上两篇中,这篇主要是vue与json-server配合使用的 删除js
删除列表页最后一条数据
handleDelete(row, index) {
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() = > {
删除数据
let thisText = index;
//console.log(index)
this.$http.delete('api/imgListData/' + thisText.id).then((res) = > {
console.log(res, '删除成功')
//刷新列表 this.$router.go(0) 或者重新调用数据
this.test()
}, function (err) {
console.log(err, '删除失败')
})
删除数据END
this.$message({
type: 'success',
message: '删除成功!'
});
}).
catch (() = > {
this.$message({
type: 'info',
message: '已取消删除'
});
});
}