如何在 POSTMAN 工具中使用 GET 方法的环境变量?

发布于 2025-01-11 20:12:32 字数 76 浏览 0 评论 0原文

如何在邮递员中使用环境变量获取方法,我有客户 ID,但我需要发送不同的客户 ID,检查响应,但我想通过邮递员工具中驱动的数据发送客户 ID

how can I use environment variables for get method in postman, I have customer id's with me but I need to send different customer id's n check the response, but I want to send customer ID's through data driven in postman tool

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林散布 2025-01-18 20:12:32

想象一下环境变量中有一个 customerId 。要在正文中或作为参数发送此值,只需将静态值替换为 {{customerId}} 即可。
输入图片此处描述

用法:
输入图片这里的描述

要更新变量,假设我们有以下响应:

{
 "success": true,
 "data": {
   "id": "1234"
 }
}

在测试选项卡中以这种方式更新它:

var data = JSON.parse(responseBody);
if(data && data.data && data.data.id){
  pm.environment.set('customerId', data.data.id)
}

在此处输入图像描述

Imagine there is a customerId in env variables. To send this value in body or as param, just replace the static value with {{customerId}}.
enter image description here

usage:
enter image description here

To update the variable, imagine we have the following response:

{
 "success": true,
 "data": {
   "id": "1234"
 }
}

in the test tab update it this way:

var data = JSON.parse(responseBody);
if(data && data.data && data.data.id){
  pm.environment.set('customerId', data.data.id)
}

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文