我知道我们可以轻松地将 ng-repeat 用于 json 对象或数组,例如:

<div ng-repeat="user in users"></div>

但是我们如何将 ng-repeat 用于字典,例如:
var users = null;
users["182982"] = "{...json-object...}";
users["198784"] = "{...json-object...}";
users["119827"] = "{...json-object...}";

我想将它与用户字典一起使用:
<div ng-repeat="user in users"></div>

是否有可能?。如果是,我如何在 AngularJs 中做到这一点?

我的问题示例:
在 C# 中,我们定义字典,如:
Dictionary<key,value> dict = new Dictionary<key,value>();

//and then we can search for values, without knowing the keys
foreach(var val in dict.Values)
{
}

是否有一个内置函数可以像 c# 一样从字典中返回值?

最佳答案

您可以使用

<li ng-repeat="(name, age) in items">{{name}}: {{age}}</li>

ngRepeat documentation 。示例:http://jsfiddle.net/WRtqV/1/

关于angularjs - 如何在 AngularJs 中为字典使用 ng-repeat?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11985863/

10-13 04:50