PostMan測試工具傳引數使用
阿新 • • 發佈:2018-12-05
1、後臺接收資料格式
List<User> userList;
postman格式:
{
"userList":[{"userId":"3","age":"14"}]
}
注意:前後端userList名字要保持一致,否則後臺接收的資料為“null”。
2、後臺接收資料格式
@PathVariable("userId")
@RequestMapping(value = "/getUser/{userId}",method = RequestMethod.POST) public User getUserById(@PathVariable("userId") Long userId){ return null; }
postman格式:(url中直接拼接id即可-通過“/”拼接)
/getUser/8
注意:PathVariable()中限定只能傳引數userId。
3、後臺接收資料格式
@RequestParam("teacherId")
@RequestMapping(value = "/queryStudentsListByTeacherId",method = RequestMethod.POST) public <List<Student>> queryStudentsListByTeacherId(@RequestParam("teacherId") Long teacherId){ return null; }
postman格式:(url中直接拼接id即可,通過“?”拼接,“?teacherId=76”也相當於postman中的json格式傳輸資料)
/queryStudentListByTeacherId?teacherId=76
注意:RequestParam()中限定只能傳引數teacherId。
4、後臺接收資料格式
@RequestParam("param")
@RequestMapping(value = "/tem",method = RequestMethod.POST) public void tem(@RequestParam("param") String param){ }
postman格式:
postman中通過form-data格式傳輸資料:
注意:RequestParam("param")中限定只能傳引數param。