post请求接收一个String类型的username postman 怎么传参数不是JSON格式
时间: 2023-05-27 15:04:02 浏览: 251
PostMan post请求发送Json数据的方法
如果要传递字符串类型的username参数,可以通过Postman的Body选项卡中的“form-data”选项来传递。
步骤如下:
1. 打开Postman,点击左上角的“新建请求”按钮,选择“POST”方法;
2. 在“Body”选项卡中选择“form-data”选项;
3. 在“Key”列中输入参数名“username”,在“Value”列中输入要传递的字符串;
4. 点击“发送”按钮即可发送POST请求,并获得响应。
另外,在传递字符串参数时,需要确保Content-Type头的值为“application/x-www-form-urlencoded”。
阅读全文