我有js变量名" reservationUrl",我想在把手脚本中使用这个变量。
<script id="reservation-template" type="text/x-handlebars-template">
{{#each this}}
<a href="'+reservationUrl+'" class="viewReservationLink" >View
</a>
{{/each}}
</script>
任何帮助?
答案 0 :(得分:1)
只需在把手支架中使用它,然后你就可以了
<script id="reservation-template" type="text/x-handlebars-template">
{{#each this}}
<a href="{{reservationUrl}}" class="viewReservationLink" >View</a>
{{/each}}
</script>
如果要用任意变量替换模板本身的内容,则应该在渲染时将其传递给模板。这就是模板引擎的用途,用变量渲染模板,对吧? :)