Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 690 Bytes

postman_send_plus.md

File metadata and controls

23 lines (12 loc) · 690 Bytes

postman环境与变量

点击右上角 带眼睛的图标可以设置变量

postman_variable

postman发不了+

通过后端打log发现,postman发加会变成字符串空格

经Google后发现原来是+被URI_encode成空格

如果需要发字符串"+86"则要改为%2B86

解释为什么空格是+:搜索python slice,GET请求则是google.com/search?q=python+slice

postman文件类型的参数

文件类型的参数不能放在params标签页内,要放在body的form-data

postman_file