1
<script id="mainTemplate" type="text/x-jquery-tmpl">
{{each(i, wrapSpec) data}}
<div id="pkgLineTabs_{{= wrapSpec.wrapSpecId}}" style="font-size:12px"
class="reportTable display {{= wrapSpec.wrapSpec2.pkgLineId.hash}}" title="{{= wrapSpec.wrapSpec2.pkgLineId.hash}}" >
{{tmpl(wrapSpec.report) "#dayTemplate"}} <!-- need to pass avgOunces variable !-->
</div>
{{/each}}
<script id="dayTemplate" type="text/x-jquery-tmpl">
<!-- need avgOunces variable down here !-->
<br />
</script>
好了說,我有這樣的一個模板。在嵌套模板調用中,我想傳遞第一個模板具有的變量,以便它可以訪問該變量。我會怎麼做呢?謝謝您的幫助。