如何在Mustache模板中处理IF语句?

8 浏览
0 Comments

如何在Mustache模板中处理IF语句?

我正在使用mustache。我正在生成一个通知列表。一个通知的JSON对象如下:

[{"id":1364,"read":true,"author_id":30,"author_name":"Mr A","author_photo":"image.jpg","story":"想要建立联系","notified_type":"友情","action":"创建"}]

使用mustache,如何根据notified_typeaction进行if语句或case语句...

如果notified_type == "友情",渲染......

如果notified_type == "其他" && action == "邀请",渲染......

这是如何工作的?

0