一、错误发生情况
该错误是我在开发时,想调用一个删除接口产生的,我的前后端代码如下。
前端:
/** 删除按钮操作 */
handleDelete(row) {
// const ids = row.id;
const id = row.productId;
this.$modal.confirm('是否确认删除该商品').then(function() {
return delProduct(id);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
后端:
@DeleteMapping("/{productIds}")
public AjaxResult remove(@PathVariable Integer productId)
{
return toAjax(tbProductService.deleteTbProductByProductIds(productId));
}
二、解决
相信大部分同学都能一眼看出这个错误,就是我DeleteMapping里面接收参数的变量名,和接口方法参数里面的变量名不一致导致的。我把DeleteMapping的{productIds}改成{productId}问题就解决了。
天啊,为什么会是这么简单的错误,我还找了半天。应该不怎么会有人和我一样chun了吧 o(╥﹏╥)oo(╥﹏╥)oo(╥﹏╥)o