可以在每个内部调用函数。
我有一系列对象:
Object {
array = new Array(), //{ true, true, false }
areAllTrue = function(){
//check if true code
}
}
我需要在:
中调用它{{each Array}}
${$value.areAllTrue()}
{{/each}}
并且它仅适用于最后一个对象。
答案 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);
}
);