欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot+VUE 同时传入对象和String到后台

程序员文章站 2022-03-08 16:43:46
...

js写法:

//对象user,String code
//吧String写在URL中

export function validCode(user,code) {
    return request({
        url: '/anonym/userinformation/RegisteUserInfo/validCode?code='+code,
        method: 'post',
        data:user,
    })
}

controller:

@PostMapping("/validCode")
public Result validCode(@RequestBody(required=false) UsUser user,
                        @RequestParam(name = "code") String code) {}

注意方法是用post,之前用的get接不到参数,是因为get请求参数放在URL中,@RequestBody只能接受放在body的参数。

 

相关标签: 踩过的一些坑