如何訪問Meteor中的{{each}}
中的模板變量?{{each}}中的流星父上下文
例如,
<template name="test">
{{#if someValue}}It works!{{/if}}<br>
{{#each thing}}
{{#if someValue}}It works in Each!{{/if}}<br>
{{/each}}
</template>
預期的行爲是看到 「它的工作!」和「它適用於每一個!」。 someValue
不是thing
陣列中任何對象的屬性。
我的問題是如何從{{each}}
內訪問模板範圍?
我在這個答案的更新部分討論了這種類型的問題:http://stackoverflow.com/questions/20976634/context-inside-templates-with-iron-router/20977732#20977732我希望它會幫助你。 – saimeunt
@saimeunt我很困惑,但我會研究它。 –