How to pass multiple parameter in angular filter function, not custom filter

前端 未结 4 2124
傲寒
傲寒 2021-02-20 14:45

I tried hard and visit lot of similar question like this but still unable to solve this issue.

I want to pass extra parameter in angular filter function. I found solutio

4条回答
  •  别跟我提以往
    2021-02-20 14:59

    Will try:

    $scope.isStatus = function(secondParam, thirdParam){
          return function(user) {
               console.log(secondParam);
               console.log(thirdParam);
               return user.status == $scope.status;
         }
    

    Updated version http://jsfiddle.net/4PYZa/282/

提交回复
热议问题