我有一个像这样声明的JS对象
$scope.items = {};
我还有一个$ http请求,用项目填充此对象。我想检测这个项目是否为空,看来ng-show支持这个...我输入
ng-show="items"
并且神奇地它起作用,我也想从控制器做同样的事情,但我似乎无法让它工作,似乎我可能必须迭代对象,看它是否有任何属性或使用lodash或下划线。
有替代方案吗?
我确实尝试了
alert($scope.items == true);
但是当创建对象并填充$http
时,它总是返回false,所以它不会那样工作。
答案 0 :(得分:198)
或者你可以通过这样做来保持简单:
alert(angular.equals({}, $scope.items));
答案 1 :(得分:71)
在私人项目中,他写了这个过滤器
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);
});
});
问候。
答案 2 :(得分:62)
此处不需要使用空对象文字,可以使用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
};
});
答案 3 :(得分:59)
另一个简单的单行:
var ob = {};
Object.keys(ob).length // 0
答案 4 :(得分:27)
如果你的物品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不支持此功能。
答案 5 :(得分:7)
if( obj[0] )
更简洁的版本可能是:
if( typeof Object.keys(obj)[0] === 'undefined' )
如果没有设置对象属性,结果将是未定义的。
答案 6 :(得分:6)
或者,如果使用lo-dash:_.empty(value)。
&#34;检查值是否为空。长度为0的数组和字符串或参数对象以及没有自己的可枚举属性的对象被视为&#34;空&#34;。&#34;
答案 7 :(得分:-1)
检查空对象
$scope.isValid = function(value) {
return !value
}
答案 8 :(得分:-11)
你可以查看物品的长度
ng-show="items.length"