我有以下模板:如何調用模板內的動態PARAMS流星助手
<template name="tempName" >
{{#each helperOne "1" "2" }}
<p>Lorem upsom</p>
{{#each}}
<a id="next"></a>
</template>
助手:
template.tempName.helpers({
"helperOne":function(a,b)
{
console.log("a = "+a+" b ="+b);
}
});
我要定義一個DOM點擊動態的設置params to helpers在模板tempName上定義值爲「1」和「2」
template.tempName.events({
"click .next":function(e,tmp)
{
//how change dynamically a and b of the helperOne helper into the
// template defintion of tempName
}
});
感謝您的幫助
hey @bouraoui {{#each}}目前只接受數組,遊標或falsey值。你不能將params傳遞給{{#each}}塊。 – benstr