Input changes under the ion-content tag $scope.$watch cannot be heard
<ion-view>
<ion-content>
<input type="text" ng-model='myNumber' />
{{myNumber}}
</ion-content>
</ion-view>
This is how it works
<ion-view>
<input type="text" ng-model='myNumber' />
{{myNumber}}
</ion-view>
Excuse me, what is the reason for this?
Modify it ion-content
script
$scope.payload = {
myNumber: ''
}
<ion-view>
</ion-view>