从Object中检索数组值

时间:2017-08-30 19:56:48

标签: javascript typescript

当我对从服务收到的项目console.log(item)时,它显示以下内容。它打印为一个对象,我可以理解它包括一个数组。如何检索“Generic”作为值。我使用打字稿作为语言。

 Object {results: Array(1)}
 results    :    Array(1)
 0    :    Object
 Value    :    "Generic"
 __metadata    :    Object
 __proto__    :    Object
 length    :    1
 __proto__    :    Array(0)
 __proto__    :    Object

我使用了stingify选项并添加了

下面的输出
 {
        "results": [
            {
                "__metadata": {
                    "uri": "http://Test:30000/_vti_bin/listdata.svc/TemplatesModality('Generic')",
                    "type": "Microsoft.SharePoint.DataService.TemplatesModalityValue"
                },
                "Value": "Generic"
            }
        ]
    }

1 个答案:

答案 0 :(得分:1)

超级简单!

您正在访问第一个项目(实际上是第0个)因此:

结果[0]是你需要的