我正在使用 Jquery-template 来呈现页面,我正在使用模板组合来迭代和显示页面。
{{if simulateBomPageData.groupNames}}
{{each simulateBomPageData.groupNames}}
{{tmpl($value,simulateBomPageData.materialData.characterAttributesData.attributeMap[$value],$index) "#characters_group"}}
{{/each}}
{{/if}}
我的子模板如下所示
<script id="characters_group" type="text/x-jQuery-tmpl">
{{=$index}}" {{=$value}}(Value from fro each loop)
the entry in the map
and the {{=$index}}
</script>
请让我知道如何访问和传递这些值