rest client 是 vscode 中类似 Postman 的 api 接口请求利器。
创建 http 文件
使用
.http
结尾的文件可以被rest-client
插件识别
注意:
- 以
###
分割接口 @uri
可以定义请求前缀,且不能加""
- 示例里的接口服务器地址在国外,测试时可能会发生错误,发生错误时多试几次即可
1 | @uri=https://jsonplaceholder.typicode.com |
rest client 是 vscode 中类似 Postman 的 api 接口请求利器。
使用
.http
结尾的文件可以被rest-client
插件识别
注意:
###
分割接口@uri
可以定义请求前缀,且不能加 ""
1 | @uri=https://jsonplaceholder.typicode.com |