简体   繁体   English

Postman - 如何从 JSON 对象内的 JSON 数组中获取值

[英]Postman - How to get a value from a JSON array inside a JSON object

I am new to JSON and Postman.我是 JSON 和 Postman 的新手。 I think I'm trying to do something very simple.我想我正在尝试做一些非常简单的事情。

I have created a POST request which will get a JSON response like the one below.我创建了一个 POST 请求,它将获得如下所示的 JSON 响应。

In the example below from inside of the FieldGroups array I want to get the value of Id but only if the value of Name is General在下面来自FieldGroups数组内部的示例中,我想获取Id的值,但FieldGroupsName值为General

How can I do it?我该怎么做? Thanks in advance.提前致谢。

{
    "Id": 1328,
    "Name": "AAA Test",
    "Owner": {
        "Id": 208,
        "Name": "The Boss"
    },
    "FieldGroups": [
        {
            "Id": "c81376f0-6ac3-4028-8d61-76a0f815dbf8",
            "Name": "General",
            "FieldDefinitions": [
                {
                    "Id": 1,
                    "DisplayName": "Product Name"
                },
                {
                    "Id": 2,
                    "DisplayName": "Short Description"
                },
                {
                    "Id": 33,
                    "DisplayName": "Long Description"
                },
            ]
        },
        {
            "Id": "5ed8746b-0fa8-4022-8216-ad3af17db91f",
            "Name": "Somethingelse",
            "FieldDefinitions": [
                {
                    "Id": 123,
                     "DisplayName": "Attribution"
                },
                {
                    "Id": 1584,
                    "DisplayName": "FC1"
                },
                {
                    "Id": 623,
                    "DisplayName": "Sizes",
                    "Owner": {
                        "Id": 208,
                        "Name": "The Boss"
                    },
                    "Unit": "",
                    "Options": [
                        {
                            "Id": 1,
                            "Value": "XS"
                        },
                        {
                            "Id": 2,
                            "Value": "S"
                        },
                        {
                            "Id": 3,
                            "Value": "M"
                        },
                    ]
                }
             ]
        }
    ],
    },
    "Version": 1
}

Postman has built-in support of a JavaScript utility library called Lodash (the _ in the code) and you can use its features to loop through the JSON array in a more consice way. Postman 内置了对名为Lodash (代码中的 _)的 JavaScript 实用程序库的支持,您可以使用其功能以更简洁的方式循环遍历 JSON 数组。

Since I am not exactly sure what you want to achieve, just try to adapt below code to your problem.由于我不确定您想要实现的目标,因此请尝试根据您的问题调整以下代码。

// Convert the response body to a JSON object
var jsonData = pm.response.json()

// Create a variable to which you will assign the value of Id later on
var generalId;

function setGeneralID() {
    _.each(jsonData.FieldGroups, (arrayItem) => {
        if(arrayItem.Name  === 'General') {
            // Assign the value of Id to the generalId variable
            generalId = arrayItem.Id;

            // OR (depending on what you want to do)
            // Create a Postman environment variable and assign the value of Id to it
            pm.environment.set("Id", arrayItem.Id);
        }
    });
}

I hope I could help.我希望我能帮上忙。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM