可以在
angularjs中使用typeof吗?
我有一个ngrepeat循环我的数据,应该检查数据是字符串还是对象.
<tr ng-repeat="text in data"> <td>{{angular.isObject(text) && 'IsObject'||text}}</td> </tr>
听起来像是使用过滤器的好地方:
原文链接:https://www.f2er.com/angularjs/141184.html<tr ng-repeat="text in data"> <td>{{text|displayText}}</td> </tr>
angular.module('myApp').filter('displayText',function() { return function(text) { return angular.isObject(text) ? 'IsObject' : text; }; });