是否可以在传入的 json 对象中使用 mustache 渲染 html?这是一个例子:
json对象
{
message : "Hello World! <em>How are you?</em>"
}
模板
<p>{{message}}</p>
电流输出
你好世界!<em>你好吗?</em>
期望的输出
你好世界!你好吗?
是否可以在传入的 json 对象中使用 mustache 渲染 html?这是一个例子:
json对象
{
message : "Hello World! <em>How are you?</em>"
}
模板
<p>{{message}}</p>
电流输出
你好世界!<em>你好吗?</em>
期望的输出
你好世界!你好吗?