jQuery模板,在每个内部调用owne函数

时间:2012-10-22 14:39:54

标签: jquery-templates

可以在每个内部调用函数。

我有一系列对象:

 Object { 
    array = new Array(), //{ true, true, false }
    areAllTrue = function(){
    //check if true code
    }
 }

我需要在:

中调用它
{{each Array}}
  ${$value.areAllTrue()} 
{{/each}}

并且它仅适用于最后一个对象。

1 个答案:

答案 0 :(得分:0)

由于没有任何代码在语法上是正确的,所以你实际上要做的事情有点模糊。我只能用下面的代码猜测你的意思。

//you have an array of objects, where each has a function
var objArray = [
  {
    objFunc: function(){
      return 'objArray #0 objFunc';
    }
  },
  {
    objFunc: function(){
      return 'objArray #1 objFunc';
    }
  },
  {
    objFunc: function(){
      return 'objArray #2 objFunc';
    }
  }
];

//you need to call each function of all objects
//in the array via jQuery "each" method.
$.each(objArray,
  function(idx, itm){
    //"itm" is the array item, which is the object
    var a = itm.objFunc(); //call it
    //log the result. see web browser Console
    console.log(a);
  }
);