I have the following controller:
app.controller('MyCtrl', function($interval, $scope) {
$scope.foo = 2;
$interval(function() {
console.log($scope.foo);
}, 1000);
});
And the following code in my view:
<input type="text" ng-model="foo" />
When I load the page, the input is correctly populated with the value "2". However, if I change the value in the input, the console continues to log "2" (without quotes).
I've used an $interval
just to illustrate - with $watch()
the callback only fires once and then never again. If I use ng-change=""
on the input, then $scope.foo
in the callback is always equal to 2.
What am I doing wrong?
I have the following controller:
app.controller('MyCtrl', function($interval, $scope) {
$scope.foo = 2;
$interval(function() {
console.log($scope.foo);
}, 1000);
});
And the following code in my view:
<input type="text" ng-model="foo" />
When I load the page, the input is correctly populated with the value "2". However, if I change the value in the input, the console continues to log "2" (without quotes).
I've used an $interval
just to illustrate - with $watch()
the callback only fires once and then never again. If I use ng-change=""
on the input, then $scope.foo
in the callback is always equal to 2.
What am I doing wrong?
Share Improve this question edited Jun 13, 2015 at 12:58 kumar kundan 2,0571 gold badge29 silver badges42 bronze badges asked Jun 13, 2015 at 12:17 Neil GarbNeil Garb 1971 silver badge10 bronze badges 5- Nothing wrong with this fragment of code, you've wrote. Check example: plnkr.co/edit/vaK63tDaBhnVLk4rC11z?p=preview. How do you instantiating your controllers and app? – Andrey Commented Jun 13, 2015 at 12:22
- @Andrey I use $routeProvider to create a route to MyCtrl: $routeProvider .when('/my', { templateUrl: 'tpl/my.html', controller: 'MyCtrl' }) And app is instantiated as var app = angular.module('app', ['ngRoute', 'ngCookies']); – Neil Garb Commented Jun 13, 2015 at 12:24
- Can you provide mcve? – Andrey Commented Jun 13, 2015 at 12:28
- This is a small part of a larger ng app, but judging by the fact that your plunker worked, I think there's something else somewhere in app which is interfering. – Neil Garb Commented Jun 13, 2015 at 12:34
- Read about angular dot rule. – dfsq Commented Jun 13, 2015 at 12:34
1 Answer
Reset to default 13If you use ng-model, you have to have a dot in there .
Bind model by creating a object like this
controller
$scope.form={
foo:0
};
view
<input type="text" ng-model="form.foo" />
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743641812a4483087.html
评论列表(0条)