gpt4 book ai didi

json - AngularJS:如何获取 JSON 对象的键

转载 作者:IT老高 更新时间:2023-10-28 12:45:41 26 4
gpt4 key购买 nike

我不确定这是否与 AngularJS 有任何关系,是否仅与 JSON 相关。

无论如何,假设我们有以下 JSON:

$scope.dataSets = {
"names": ["Horace", "Slughorn", "Severus", "Snape"],
"genders": ["Male", "Female"]
}

现在,我正在使用 ng-repeat 指令来打印上面的内容,如下所示:

<div ng-repeat="data in dataSets>
//Continue readig to know what I am expcting here
</div>

我对 <div></div> 的期望标签是打印“姓名”和“性别”。也就是说,我希望打印 JSON 的 key 。我不知道键是什么,因为它们可能是任何东西。我该怎么做?

最佳答案

正如文档所述:

(key, value) in expression – where key and value can be any user defined identifiers, and expression is the scope expression giving the collection to enumerate.

<div ng-repeat="(key, data) in dataSets">
{{key}}
</div>

关于json - AngularJS:如何获取 JSON 对象的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15525685/

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