AngularJs在表达式中使用instanceof

前端之家收集整理的这篇文章主要介绍了AngularJs在表达式中使用instanceof前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可以在 angularjs中使用typeof吗?

我有一个ngrepeat循环我的数据,应该检查数据是字符串还是对象.

<tr ng-repeat="text in data">
    <td>{{angular.isObject(text) && 'IsObject'||text}}</td>
</tr>
听起来像是使用过滤器的好地方:
<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;
    };
});
原文链接:https://www.f2er.com/angularjs/141184.html

猜你在找的Angularjs相关文章