Angular expression to check if model is array or object

后端 未结 2 1011
忘掉有多难
忘掉有多难 2020-12-19 14:55

How can I check if an angular model is an array or an object? Is there a built in or do I have to write a filter isArray with Array.isArray()

{{[] | isA

2条回答
  •  攒了一身酷
    2020-12-19 15:50

    I guess you can also add underscore/lodash to the rootScope and use it:

    _ = require('lodash')
    
    angular.module('app',[])
    .run(function($rootScope){ 
       $rootScope._ = _
    })
    

    And in the template:

    {{ $root._.first(foo) }}

    The benefits - you have to add lodash only in one place, and it will be available everywhere. You can use many other things the same way, like Math functions for example. Just be reasonable and don't put too much javascript into expressions.

提交回复
热议问题