导致问题的代码:
angular.module('myApp')
.controller('metaCtrl', function ($scope) {
$scope.$watch(function (){ return $(document).height() }, function(val){
$scope.config = {minHeight: val}
});
});
不知何故,每次调用 $watcher 函数时,他的 config.minHeight 值都会提高。
已经花了 4 个小时尝试调试它。
任何帮助深表感谢。
grunt 开发服务器和从 dist 文件夹中提供服务有什么不同?