我不知道如何使用和&其他在玉文件中。
我有:
br
each test in changes
.change-row
if test.property == "Image"
strong #{test.property}
else{
strong #{test.property}
span : #{test.newValue}
}
答案 0 :(得分:1)
您必须从else中删除大括号并正确缩进代码。
br
each test in changes
.change-row
if test.property == "Image"
strong #{test.property}
else
strong #{test.property}
span : #{test.newValue}
有关详细信息,请参阅http://learnjade.com/tour/conditionals/