Pug also provides a negated version unless (the following are therefore equivalent):
unless user.isAnonymous
p You're logged in as #{user.name}
if !user.isAnonymous
p You're logged in as #{user.name}
unless user.isAnonymous
p You're logged in as #{user.name}
if !user.isAnonymous
p You're logged in as #{user.name}
2016-12-27
在pug里- each已经无法使用了,需要直接使用each作为循环
each value , key in imooc
p #{key}: #{value}
另外,注意缩进
each value , key in imooc
p #{key}: #{value}
另外,注意缩进
2016-12-27
jade已经改名pug,并且
a(href="/#{url}") Link
This syntax is no longer supported(这种设置属性的语法已经在pug里不被支持)
篇幅限制,不能多说,喜欢挑战的同学请访问pug官方网站的支持文档里看替换选择
网址:https://pugjs.org/language/attributes.html
a(href="/#{url}") Link
This syntax is no longer supported(这种设置属性的语法已经在pug里不被支持)
篇幅限制,不能多说,喜欢挑战的同学请访问pug官方网站的支持文档里看替换选择
网址:https://pugjs.org/language/attributes.html
2016-12-25