admin管理员组文章数量:1340579
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" />
本文标签: javascriptAngularJS Model not updating in controller scopeStack Overflow
版权声明:本文标题:javascript - AngularJS: Model not updating in controller scope - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743641811a2514839.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论