首页 > 解决方案 > Mustache Handlebars 中的嵌套表达式(Triple-Stash 中的表达式)

问题描述

您如何在 Handlebars Triple-stash 中放置表达式?

我的.hbs文件中有以下内容

{{{product.productdescription}}}

那么产品描述是:

<div>
    <h1> {{product.producttitle}} </h1>
    <p> This is a product </p>  
 <div>

当我只使用三括号时,它只是将字符串呈现productdescription为 HTML,{{product.producttitle}}而不是呈现,只是显示为文本。

标签: handlebars.jsmustache

解决方案


推荐阅读