不变得ajax请求:
$.ajax({
type: "POST",
async: false,
url: _ctx + "/loadList",
contentType: "application/json",
dataType: "json",
data: JSON.stringify({"cloudId": cloudId}),
success: function (result) {
}
});
在controller中如下:
@PostMapping("/loadList")
public R queryList(Long id) {
List<Entity> list = pService.queryListByCondition(id);
return R.ok().put("list", list);
}
会报错,出现Required Long parameter is not present的问题。这是说前端没法参数传递过来。
但是呢,参数怎么可能会没有传递呢?
然后改成了
@PostMapping("/loadList")
public R queryList(@RequestParam("cloudId") Long id) {
List<Entity> list = pService.queryListByCondition(id);
return R.ok().put("list", list);
}
似乎没什么用,报错变成了来自于@RequestParam的问题,因为加了这个注解,要么定一个default,要么必须传递过来。在这里,显示根本没有这个参数。
最后改成了:
@PostMapping("/loadList")
public R queryList(@RequestBody Map<String, Object> params) {
List<Entity> list = pService.queryListByCondition(params);
return R.ok().put("list", list);
}
因为我突然意识到,有Shiro这个东西存在,可能是这个的问题,但是我了解不多,不知道怎么改。于是,使用了params这个map。然后解决了。参数得以传递