如何在ng-repeat中对对象的属性进行双向数据绑定

时间:2016-11-02 18:02:53

标签: javascript angularjs angularjs-ng-repeat angularjs-select2

假设我有以下对象

var objs = [{"someKey":"test"}, {"someKey","test2"}]

我想在我的ng模型中绑定到some.model.name的双向数据,这应该只关心objs的值。

<ui-select ng-model="some.model.name">

另外,我喜欢按值选择objs

<ui-select-match class="ui-select-match">
{{$select.selected.value}}
</ui-select-match>

我正在查看objs并显示someKey的值

<ui-select-choices repeat="myKey.value as myKey in objs track by myKey.value">
<div ng-bind="myKey.value">

问题是some.model.nameobjsobjs时没有价值,我想知道是否有任何方法可以在ng-repeat中展平http://example.com/f_name1/hab/anot/ne/style.css (level1) http://example.com/js/f_name1/nofrac/script.js (level2) http://example.com/lev1/lev2/f_name1/lev4/lev5/lev6 (level3) 所以它们只是有钥匙的价值?

sample code

0 个答案:

没有答案