gpt4 book ai didi

javascript - 使用不同的数据加载 Handlebars js 部分

转载 作者:行者123 更新时间:2023-11-28 06:24:13 26 4
gpt4 key购买 nike

有没有办法使用部分但在其中包含不同的数据?或者换句话说,我可以在另一个模板中包含模板 Handlebars 模板吗?

基本上是这样的:

        <script id="countries-nav" type="text/x-handlebars-template">
{{#each this}}
<li class="item"><a href="#/countries/{{ISO}}">{{Country}}</a></li>
{{/each}}
</script>

<script id="countryspecifics" type="text/x-handlebars-template">
{{#each this}}
<div class="country__title">
<h2>{{title}}</h2>
</div>
{{> countries-nav}}
{{/each}}
</script>

最佳答案

这是 Blaze 的基本功能:

<template name="countries-nav">
{{#each this}}
<li class="item"><a href="#/countries/{{ISO}}">{{Country}}</a</li>
{{/each}}
</template>

<template name="countryspecifics">
{{#each this}}
<div class="country__title">
<h2>{{title}}</h2>
</div>
{{> countries-nav}}
{{/each}}
</template>

关于javascript - 使用不同的数据加载 Handlebars js 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35264741/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com