输入字段:
<input type="text" data-ng-model="some_model" />
some_model的初始状态为 null。当我向输入字段添加一些任意值并再次删除它时,some_model变成一个空字符串。
我能做的是这样的:
if($scope.some_model != null && $scope.some_model != undefined && $scope.some_model.trim() == 0){
$scope.some_model=null;
}
这有效,但我想知道是否有标准的角度方法可以做到这一点?
我创建了这支笔来工作,似乎得到了预期的空值。将根据需要更新。随意分叉并插入一些代码。
angular
.module('app', [])
.controller('ExampleController', ExampleController)
.factory('exampleService', exampleService);
ExampleController.$inject = ['$timeout'];
function ExampleController($timeout) {
var vm = this;
vm.text = null;
activate();
function activate() {
$timeout(function() {
if (vm.text != null && vm.text != undefined && vm.text.trim() == 0) {
vm.text = null;
}
console.log(vm.text);
}, 10);
}
}
function exampleService() {
var service = {
//basic CRUD operations.
post: post,
get: get,
update: update,
remove: remove
};
return service;
function post() {}
function get() {}
function update() {}
function remove() {}
}
<body ng-app="app">
<div class="container-fluid" ng-controller="ExampleController as vm">
<input type="text" ng-model="vm.text" />
</div>
</body>