我有一个 AngularJS 指令,它包含一个文本输入,它有自己的模型,该模型通过指令的 ng-model 从控制器范围传递一个值。
看看这支笔(和下面的代码):http ://codepen.io/ericwshea/pen/KwXRyr
问题是有时该模型恰好是空值或未定义值,在这种情况下,我想使用文本输入的 ngModelController 将文本输入中空值的显示格式化为类似于“NULL”的内容。
如果该值是我在格式化程序中匹配的任意字符串,则它可以工作,但如果该值为 null 则不能(我也用未定义的相同结果进行了测试)。
对此有任何见解/解决方法,还是这只是 $formatters 的缺点?
HTML:
<div ng-app="app" class="container">
<div ng-controller="ctrl" class="col-md-12">
<form>
<input-directive ng-model="model"></input-directive>
<input-directive ng-model="model2"></input-directive>
<div ng-if="model">Model 1: {{model}}</div>
<div ng-if="model2">Model 2: {{model2}}</div>
</form>
</div>
</div>
JAVASCRIPT:
angular.module('app', [])
.controller('ctrl', function($scope) {
$scope.model = null;
$scope.model2 = 'make this null';
})
.directive('inputDirective', function() {
var template =
'<div>'+
'<div class="input-group">'+
'<input type="text" class="form-control" ng-model="localModel">'+
'<span class="input-group-btn">'+
'<button ng-click="save()" class="btn btn-default" type="button">Save</button>'+
'</span>'+
'</div>'+
'</div>';
function link (scope, elem, attr) {
var inputModelCtrl = elem.find('input').controller('ngModel');
function formatter(val) {
if (val === 'make this null') {
return scope.nullValue;
}
if (val === null) {
return scope.nullValue;
}
return val;
}
scope.nullValue = 'NULL';
scope.localModel = scope.ngModel;
scope.save = function() {
scope.ngModel = scope.localModel;
}
inputModelCtrl.$formatters.push(formatter);
}
return {
restrict: 'E',
replace: true,
require: 'ngModel',
template: template,
link: link,
scope: {
ngModel: '='
}
}
})
;