我知道我们可以轻松地对json对象或数组使用 ng-repeat ,例如:
<div ng-repeat="user in users"></div>
但是如何将ng-repeat用于字典,例如:
var users = null; users["182982"] = "{...json-object...}"; users["198784"] = "{...json-object...}"; users["119827"] = "{...json-object...}";
我想在用户字典中使用它:
可能吗?。如果是,我该如何在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文档。示例:http://jsfiddle.net/WRtqV/1/