gpt4 book ai didi

json - Powershell 无法从名为 count 的键中获取值

转载 作者:行者123 更新时间:2023-12-05 02:27:41 26 4
gpt4 key购买 nike

我有一个简单的 json,我试图从 Powershell 中获取值

$webData = @'
{
"results": [
{
"facet": "266976",
"appid": "266976",
"count": 233206
},
{
"facet": "27096405",
"appid": "27096405",
"count": 85669
}
]
}
'@

$data1 = $webData | ConvertFrom-Json

Write-Output $data1.results.count

当我写输出时,我得到的是值计数,而不是像我对 appid 和 facet 所做的那样,它本身就是值。期望的结果:233206当前结果:2

我无法更改 json。有没有办法让 PS 不把它看作计数运算符?谢谢

最佳答案

作为mklement0请注意,在这种情况下,数组类型的 ICollection.Count 属性优先于 member access enumeration名为 Count 的数组元素属性。

一个简单的解决方法是使用 intrinsic method .ForEach(string PropertyName):

$data1.results.ForEach('count')

作为Santiago Squarzon注意,ForEach() 输出的类型是 Collection`1。如果您确实需要一个数组,请使用数组子表达式运算符 @() 或使用 Santiago 建议的解决方法,使用 GetEnumerator()

$arrayOfCount = @($data1.results.ForEach('count'))
$arrayOfCount = $data1.results.GetEnumerator().Count

输出:

233206
85669

作为Santiago Squarzon注意,如果你真的只想得到 first 对象的 count 的值,你可以这样写:

$data1.results[0].Count

输出:

233206

请注意,Write-Output 实际上是多余的,因为 PowerShell 隐式 输出任何语句的“结果”。所以我在上面的示例中删除了它。

关于json - Powershell 无法从名为 count 的键中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73007025/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com