观看回复时遇到问题。
我有一个SettingsCtrl作为设置,这是我的观点:
<input type="text" class="form-control" ng-model="settings.test.one" />
<input type="text" class="form-control" ng-model="settings.test.second" />
这是我的控制器:
app.controller('SettingsCtrl', function ($scope, settingsFactory, Test) {
var vm = this;
settingsFactory.test().then(function(response){
vm.test = response;
})
///// OR
vm.test = Test; // this is from ui-router resolve
$scope.$watch(angular.bind('vm', function () {
return vm.test;
}), function (newV, oldV) {
console.log(newV, oldV);
});
$scope.$watch(function watch(scope){
return vm.test;
}), function handle(newV, oldV) {
console.log(newV, oldV);
});
$scope.$watch('vm', function (newVal, oldVal) {
console.log('newVal, oldVal', newVal, oldVal);
});
});
我一直在寻找并找到了不同的解决方案,但没有解决方案。
****它只是第一次观看,当控制器加载并且我看到我的控制台日志时,但是当我尝试进行更改时,观察者什么都不做。
我做错了什么?
答案 0 :(得分:7)
如果我没错,你的$ watch会在第一次加载控制器时被击中,但是当你在对象中改变某些东西时却不会。如果这是真的,那么试试这个:
true
默认情况下,$ watch函数会监视引用,因此如果您只更改被监视对象的属性,则不会触发它。通过在末尾添加Does XML care about the order of elements?
,您可以开始深入观察,每次更改对象的属性时都会遇到命中。
答案 1 :(得分:2)
AngularJS仍然按预期工作:
angular
.module('app', [])
.controller('SettingsCtrl', function($scope) {
var vm = this
vm.test = ''
$scope.$watch(function watch(scope) {
return vm.test;
},
function handle(newV, oldV) {
if (newV && newV.name && newV.name !== oldV.name) {
vm.test.watchedName = newV.name.toUpperCase()
}
}, true);
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app='app'>
<div ng-controller='SettingsCtrl as settings'>
<input type='text' ng-model='settings.test.name' />
<pre><code>
{{ settings.test.watchedName }}
</code></pre>
</div>
</div>
答案 2 :(得分:1)
请尝试以下代码进行观看。
$scope.$watch(function(){
return ctrl.test;
},function(newVal,oldVal){
console.log(newVal,oldVal);
},true)
这是工作fiddle
你需要深入观察物体。
此链接$watch an object将帮助您理解这一点。
答案 3 :(得分:0)
请尝试在观察者中调用vm变量作为controller.vmVariable。 Controller是您的控制器名称,然后是您在vm中分配的变量。
$scope.$watch('controller.vmVariable', function (newVal, oldVal) {
console.log('newVal, oldVal', newVal, oldVal);
});
答案 4 :(得分:0)
在引用github帖子(https://github.com/johnpapa/angular-styleguide/issues/428)和(http://jsbin.com/levewagufo/edit?html,js,console,output)之后对我有用的是将控制器从vm = this重命名为(在你的情况下)settings = this in the begin of this写控制器。这样可以确保引用与&#34;控制器匹配为&#34;从视图中声明。希望这有帮助
在视图中:
ng-controller="AddDetailController as addDetailsCtrl"
在Controller Js文件中:
$scope.$watch('addDetailsCtrl.currentPage', function (current, original) {
console.log(current + ":" + original); });