标签:str 情况 save ble eth long 函数参数 ons 方法
1. 函数参数名与请求参数名保持一致
@RequestMapping("/delete")
@ResponseBody
public JsonResult delete(Long id){
2. 函数参数名与请求参数名保持不一致
@RequestMapping(value = "/add", method = RequestMethod.POST)
public AjaxResult save(@RequestBody Product product) {
@RequestMapping(value = "/delete/{id}", method = RequestMethod.DELETE)
public AjaxResult delete(@PathVariable("id") Long id) {
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public Product get(@PathVariable(value = "id", required = true) Long id)
标签:str 情况 save ble eth long 函数参数 ons 方法
原文地址:https://www.cnblogs.com/wgyi140724-/p/10736379.html