我知道我们可以很容易地使用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#?
您可以使用
原文链接:https://www.f2er.com/angularjs/147879.html<li ng-repeat="(name,age) in items">{{name}}: {{age}}</li>