Is It Possible To Use Ng-value And Ng-model At The Same Time?
Is it possible to use ng-value and ng-model at the same time? I find this code on W3school https://www.w3schools.com/angular/tryit.asp?filename=try_ng_ng-value I try to add ng-mode
Solution 1:
There is a mismatch between your variable names. You are using both showVar
and myVar
. Try this:
<divng-app="myApp"ng-controller="myCtrl"><inputng-value="myVar"ng-model="myVar">
{{myVar}}
</div><script>var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.myVar = "Hello World!";
});
</script>
Solution 2:
Yes you can use.check the angular documentation for more details ngValue angular
Post a Comment for "Is It Possible To Use Ng-value And Ng-model At The Same Time?"