当我编写手表处理函数时,我检查 undefined
和 null
上的 newVal 参数。为什么 AngularJS 有这样的行为,但没有特定的实用方法?所以有 angular.isUndefined
但没有 angular.isUndefinedOrNull
。通过手工实现并不困难,但是在每个控制器中如何扩展角度来实现这个功能呢?Tnx.
编辑 :
例如:
$scope.$watch("model", function(newVal) {
if (angular.isUndefined(newVal) || newVal == null) return;
// do somethings with newVal
}
这种处理方式是否是公认的惯例?
编辑2 :
JSFiddle 示例(http://jsfiddle.net/ubA9r/) :
<div ng-app="App">
<div ng-controller="MainCtrl">
<select ng-model="model" ng-options="m for m in models">
<option value="" class="ng-binding">Choose model</option>
</select>
{{model}}
</div>
</div>
var app = angular.module("App", []);
var MainCtrl = function($scope) {
$scope.models = ['Apple', 'Banana'];
$scope.$watch("model", function(newVal) {
console.log(newVal);
});
};