我知道如何使用ng-model
將視圖中的值傳遞給控制器。在控制器中,只需使用此代碼$scope.name = this.ngmodelnameinview
從視圖中獲取值。在輸入字段中使用ng-model的角度變爲空
在現場視圖中是否必須使用ng-model
?
但我現在的問題是,我有+
按鈕,當我點擊按鈕時它會自動把值放入輸入文本框內。
<button data-ng-click="adultCount = adultCount+1"> + </button>
<input type="text" name="totTicket" value="{{adultCount}}">
,但是當我添加ng-model
輸入欄裏面,它返回null
<input type="text" name="totTicket" value="{{adultCount}}" ng-model="adultcount">
如何解決這一問題?謝謝!
如果解決您的問題,請標記爲答案。 – Aravind