检查对象是否为空,使用ng-show但不能使用控制器?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查对象是否为空,使用ng-show但不能使用控制器?相关的知识,希望对你有一定的参考价值。
我有一个像这样声明的JS对象
$scope.items = {};
我还有一个$ http请求,用项目填充此对象。我想检测这个项目是否为空,看来ng-show支持这个...我输入
ng-show="items"
并且神奇地它可以工作,我也想从控制器做同样的事情,但我似乎无法让它工作,似乎我可能必须迭代对象,看看它是否有任何属性或使用lodash或下划线。
还有其他选择吗?
我确实试过了
alert($scope.items == true);
但是当创建对象并填充$http
时,它总是返回false,所以它不会那样工作。
答案
这里不需要使用空对象文字,可以使用null或undefined:
$scope.items = null;
通过这种方式,ng-show
应该继续工作,在你的控制器中你可以做到:
if ($scope.items) {
// items have value
} else {
// items is still null
}
在您的$http
回调中,您执行以下操作:
$http.get(..., function(data) {
$scope.items = {
data: data,
// other stuff
};
});
另一答案
或者你可以通过做这样的事情来保持简单:
alert(angular.equals({}, $scope.items));
另一答案
在一个私人项目中,写了这个过滤器
angular.module('myApp')
.filter('isEmpty', function () {
var bar;
return function (obj) {
for (bar in obj) {
if (obj.hasOwnProperty(bar)) {
return false;
}
}
return true;
};
});
用法:
<p ng-hide="items | isEmpty">Some Content</p>
测试:
describe('Filter: isEmpty', function () {
// load the filter's module
beforeEach(module('myApp'));
// initialize a new instance of the filter before each test
var isEmpty;
beforeEach(inject(function ($filter) {
isEmpty = $filter('isEmpty');
}));
it('should return the input prefixed with "isEmpty filter:"', function () {
expect(isEmpty({})).toBe(true);
expect(isEmpty({foo: "bar"})).toBe(false);
});
});
问候。
另一答案
另一个简单的单线程:
var ob = {};
Object.keys(ob).length // 0
另一答案
如果您不能将OBJ等于null,则可以执行以下操作:
$scope.isEmpty = function (obj) {
for (var i in obj) if (obj.hasOwnProperty(i)) return false;
return true;
};
在视图中你可以做到:
<div ng-show="isEmpty(items)"></div>
你可以做
var ob = {};
Object.keys(ob).length
仅当您的浏览器支持ECMAScript 5时。例如,IE 8不支持此功能。
有关更多信息,请参阅http://kangax.github.io/compat-table/es5/
另一答案
if( obj[0] )
更简洁的版本可能是:
if( typeof Object.keys(obj)[0] === 'undefined' )
如果没有设置对象属性,结果将是未定义的。
另一答案
或者,如果使用lo-dash:_.empty(value)。
“检查值是否为空。长度为0的数组,字符串或参数对象以及没有自己的可枚举属性的对象被视为”空“。
另一答案
检查空对象
$scope.isValid = function(value) {
return !value
}
另一答案
你可以检查物品的长度
ng-show="items.length"
以上是关于检查对象是否为空,使用ng-show但不能使用控制器?的主要内容,如果未能解决你的问题,请参考以下文章