0
我有一個單選按鈕的值被選擇這樣的:如何一個角模型綁定到另一個NG-模型
<input type="radio" ng-model="lesson.sectionID" value="{{section.$id}}">
我想的是輸入到另一個模型的值綁定,我試圖以下:
<input type="text" ng-model="module.sectionID" ng-bind="lesson.sectionID">
和
<input type="text" ng-model="module.sectionID" ng-value="lesson.sectionID">
當我試圖NG-值它的文字輸入設置爲正確的值,但ACTUA沒有設置模型的值。