我知道如何使用ng-model
. 在控制器中,它只是使用此代码从视图中获取值$scope.name = this.ngmodelnameinview
。
是否必须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">
如何解决这个问题?谢谢!