我有一个 json 对象数组
$scope.arrary = [{"a":"value"},{"b":"value2"},{"c":"value3"}];
$scope.secondObje = {"a":"this is updated value","b":"this is new value"}
我可以使用迭代“数组”
<div ng-repeat="(key,value) in array">
现在我如何使用键访问第二个对象的值
我想要类似的东西{{secondObje.key}}
,我怎么能在角度上做到这一点。
这样我就可以"this is updated value"
打印"this is new value"
出来了。
请帮我。