请教大家:我ng-repeat了一些items,然后每个item会有个评论表单,我用ng-bind="item.comment",但是提交时,我在item.comment里看不到评论的内容,是空的,好像没绑定上,请问应该如何写这个绑定呢,我用的是1.2.19版本。谢谢
淡淡烟草味2017-05-15 17:14:08
谢邀
<p ng-repeat="item in items">
<p>{{item.id}}</p>
<p>{{item.name}}</p>
<textarea ng-model="item.comment"></textarea>
<button ng-click="insertComment($index)">提交</button>
</p>
$scope.items=[
{id:1,
name:'a',
comment:''
},
{id:2,
name:'b',
comment:''
]
表单控件,数据输入的都是用ng-model来绑定数据 而ng-bind和{{}}的作用是一样的