其他分享
首页 > 其他分享> > Post请求如何访问动态URL

Post请求如何访问动态URL

作者:互联网

背景需求:使用POST发送请求,但是URL中有一部分是从请求体中获得然后拼接而成
例如:

curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
     --data "user_id=1&access_level=30" "https://gitlab.example.com/api/v4/groups/:id/members"
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
     --data "user_id=1&access_level=30" "https://gitlab.example.com/api/v4/projects/:id/members"

在这里插入图片描述

要请求的URL为:https://gitlab.example.com/api/v4/projects/:id/members,其中id属于入参,包含在POST的请求体中,此时可以使用rest风格的请求方式,如下:

@RequestMapping(method = RequestMethod.POST,value = "projects/{id}/members")
JSONObject addAuthorizationToProject(@PathVariable("id") int id, @RequestBody GitUser gitUser);

使用{id}拼接url,使用@PathVariable(“id”)给id赋值,其中id可以是Gituser的属性,传实参的时候可以用gituser的get方法获取

标签:请求,URL,id,访问,api,members,--,Post,POST
来源: https://blog.csdn.net/strongpanghu/article/details/120289309