最佳答案
我知道我们可以很容易地为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...}";
我想用用户的字典:
<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#一样从字典中返回值?