Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postman 简易使用指南 #6

Open
leeduckgo opened this issue May 10, 2020 · 0 comments
Open

Postman 简易使用指南 #6

leeduckgo opened this issue May 10, 2020 · 0 comments
Assignees

Comments

@leeduckgo
Copy link
Member

作者:王宁波

一.介绍

postman是一种常用的接口测试工具,可以模仿get,post等请求方式来测试接口

二.安装客户端

  1. Postman-win64-7.12.0-Setup.exe
  2. 永久链接:https://pan.baidu.com/s/10naUulEFZRRYlH3ife_UlA
  3. 提取码:i2ev
  4. 下载后直接简单而粗暴的双击即可完成安装

三.界面介绍

  1. History:History是表示历史的意思,它会呈现一个列表的形式显示出我们历史的请求;
  2. Collections:Collections是表示集合的意思,我们可以在这里根据API文档来创建一个请求的集合;
  3. My Workspace:表示这是我的工作区,我们在工作区里面进行接口API测试;
  4. +Invite:邀请的意思,我们可以要请别人一起;
  5. +New:新的意思,我们可以创建新的工作空间;
  6. import:导入的意思,我们可以导入在其他地方或者其他请求的API接口;
  7. Runner:运行的意思,表示这是Postman一个运行的环境;
  8. send:发送请求

四.post请求方式的四种数据类型

  1. form-data:
    就是http请求中的multipart/form-data,它会将表单的数据处理为一条消息,以标签为单元,用分隔符分开。既可以上传键值对,也可以上传文件。当上传的字段是文件时,会有content-type来说明文件类型;content-disposition用来说明字段的一些信息;由于有boundary隔离,所以multipart/form-data既可以上传文件,也可以上传键值对,它采用了键值对的方式,所以可以上传多个文件。
  2. x-www-form-urlencoded:
    就是application/x-www-from-urlencoded,会将表单内的数据转换为键值对
  3. raw:
    可以上传任意格式的文本,可以上传text、json、xml、html等
  4. binary:
    相当于content-type:application/octet-stream,从字面意思得知,只可以上传二进制数据,通常用来上传文件,由于没有键值,所以,一次只能上传一个文件。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants