Questions tagged «angularjs-ng-show»


10
AngularJS ng-repeat处理空列表大小写
我以为这是很普通的事情,但是我找不到如何在AngularJS中处理它。假设我有一个事件列表,想用AngularJS输出它们,那很简单: <ul> <li ng-repeat="event in events">{{event.title}}</li> </ul> 但是,当列表为空时如何处理?我想要一个消息框,其中的列表包含“无事件”或类似内容。唯一会接近的是ng-switchwith events.length(如何检查对象而不是数组时是否为空?),但这真的是我唯一的选择吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.