Mustache如何“无逻辑”?

时间:2013-08-23 15:24:49

标签: php javascript templates logic mustache

Definition of "logic"

  

根据严格的原则进行推理或评估   有效性:“经验比演绎逻辑更能指导这一点。”

Mustache的“sections”以显示块的形式使用条件逻辑,基于布尔值from the documentation

模板:

Shown.
{{#nothin}}
  Never shown!
{{/nothin}}

哈希:

{
  "person": true,
}

输出:

Shown.

因此,如果我的(可能天真/无知)定义下的逻辑出现在其模板中,那么我很想知道Mustache以什么方式认为“无逻辑”?

1 个答案:

答案 0 :(得分:1)

与许多其他模板系统相比,它被称为“无逻辑”。我认为没有任何特别深刻的主张。 What's the advantage of Logic-less template (such as mustache)?的答案也可能具有启发性。