私は 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>
これらの値にアクセスして渡す方法を教えてください