0

我想在我的玉模板中使用布尔运算符来激活菜单。因为我的语法就像

li(class={ active: "blogs" or "post" == type })
  a(href='blog.html')
    | Blog

我正在使用 harpjs 将玉编译到 html 模板中,当我编译模板时,它给了我类似的错误,

  "name": "SyntaxError",
  "message": "Unexpected identifier",

如何在玉中正确添加布尔条件?

4

1 回答 1

2

我在Ben Fortune的评论的帮助下解决了这个问题。

我替换了orwith||并且错误已解决。

文件代码看起来像,

li(class={ active: "blogs" || "post" == type })
  a(href='blog.html')
    | Blog
于 2016-10-11T09:01:29.097 回答