我是 ANGULAR WORLD 的新手,请帮助我有下表行
<tr data-ng-repeat="obj in myObjs | filter:search">
<td><strong data-ng-hide="obj.editMode">{{ obj.ObjID }}</strong></td>
<td>
<p data-ng-hide="obj.editMode">{{ obj.Key }}</p>
<p data-ng-show="obj.editMode">
<input type="text" data-ng-model="obj.Name" />
</p>
</td>
<td>
<p data-ng-hide="obj.editMode">{{ obj.Value }}</p>
<div ng-init="objKVP = {{obj.Value}}">
<ul class="example-animate-container">
<li class="animate-repeat" ng-repeat="val in objKVP">
{{val.Key}} : {{val.Value}}
</li>
</ul>
</div>
</td>
在 ng-init = objKVP,我会得到像
[{'Key':'test','Value':'https://google.com'},
{'Key':'test1','Value':'testval1'},
{'Key':'test2','Value':'t@testval2'},
{'Key':'test3','Value':'testval3'},
{'Key':'test4','Value':'testval3'}]
但是当我尝试获取 Key 和 Value 时,它不会填充在 LI 标签内。如果我将上面的键值对直接发布在 objKVP 中,那么它会在 LI 标记内显示键和值,所以问题在于动态值,(尽管它在我检查元素时显示)
帮助