angular.forEach(objs, function(item, key){  if(...){     return false;  }});return true;

上面这段代码,无论判断条件是什么,永远返回true

return 不能中断循环,break也不能.