比方說,我有類似Twitter的網站填充消息。有一個功能,您可以添加評論消息。AngularJS - 多種形式 - 一個ng模型?
所以,我遍歷每個消息並顯示評論表單:
<div class="" ng-repeat="msg in messages">
<span>message: {{msg.message}}</span>
<span>date {{msg.date}}</span>
<form ng-submit="">
<input type="text" ng-model="commentForm.comment">
<button type="submit" value="send">
</form>
</div>
的問題是,當我下一個消息類型註釋它顯示了所有的輸入,這不是我想要的行爲。
- 禁用與禁用=「true」其他輸入字段沒有幫助。
下面是代碼:plnkr