使用fidder進行post和get請求

zhumeilu發表於2017-12-14

圖片.png
post請求,一定要在請求頭裡面加上Content-Type,不然在springmvc裡面無法獲取到引數,只能通過HttpServletRequest獲取流,然後才能獲取請求體。 Content-Type: application/x-www-form-urlencoded 表單提交方式,鍵值對 username=zml3&password=123&name=zml3 Content-Type: application/json json格式 {“username”:"zml3","password":"123","name":"zml3"} get方式比較簡單,只需要選擇get,然後輸入地址就行

相關文章