问答详情
源自:2-4 统一异常处理(上)

这样方法是不是只能针对于post请求,参数为实体类的情况

如标题,这种可以返回

https://img4.mukewang.com/5c6f820e0001a7fc10610284.jpg

但如果是get请求,传字符串参数,

https://img1.mukewang.com/5c6f82b90001ac7408060256.jpg

返回值:

{

    "code": -1,

    "msg": "An Errors/BindingResult argument is expected to be declared immediately after the model attribute, the @RequestBody or the @RequestPart arguments to which they apply: public com.example.demo.model.CommonMsg com.example.demo.controller.UservisitorController.SelectAll(org.springframework.validation.BindingResult)",

    "data": null

}


提问者:_小北 2019-02-22 13:04

个回答

  • 子适
    2019-02-22 14:56:23

    get 请求怎么会有表单验证呢?只有 Post 请求才会提交数据,有验证的需求吧。