Mustache javascript:如何处理布尔值
我有一个 javascript 对象 obj
,键的值可以是 true
或 false
。
该值被传递给 Mustache 模板。
// javascript object
obj = {
like: true // or false
}
// template
<span>
{{ like }}
</span>
现在我想以这种方式获得渲染结果:
<span>
Like <!-- If {like: true} --->
</span>
<span>
Unlike <!-- If {like: false} --->
</span>
在 Mustache 模板中制作它的最佳方法是什么?
I have a javascript object obj
and the value of the key can be true
or false
.
This value is passed to mustache template.
// javascript object
obj = {
like: true // or false
}
// template
<span>
{{ like }}
</span>
Now I would like having the result of the rendering in this way:
<span>
Like <!-- If {like: true} --->
</span>
<span>
Unlike <!-- If {like: false} --->
</span>
What is the best way to make it in mustache template?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就是这样:
it's just like this:
只需使用一个部分和一个倒转部分:
Just use a section and an inverted section: