self-confidence,the source of all the power

导航

http请求与传参

这并不算是文章,暂时只做粗略地记录,以免忘记,因此会显得杂乱无章,随便抓了几个包和对postman截图,日后有空再完善

1、get方式

    只有一种方式,那就是在url后面跟参数

2、post方式

   1)表单传参方式

    

     请求头如下

POST http://localhost:8090/rest/integration/data/dictTable/add HTTP/1.1
Host: localhost:8090
Connection: keep-alive
Content-Length: 37
Postman-Token: c35f2d76-9ada-b509-523c-c2031f7eff28
Cache-Control: no-cache
Origin: chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.8

groupId=sssssssg&tableName=aaaaaaaaaa

     
2)以实体bean放在请求头

  
请求头如下:

POST http://localhost:8090/rest/integration/data/dictTable/add HTTP/1.1
Host: localhost:8090
Connection: keep-alive
Content-Length: 19
Postman-Token: 50c4f914-a376-ee0e-a92a-daf8763ac084
Cache-Control: no-cache
Origin: chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
Content-Type: application/json
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.8

{"groupId":"ddsss"}

 

posted on 2017-07-20 16:20  漩涡鸣人  阅读(942)  评论(0编辑  收藏  举报