我已将翡翠更新到最新版本,并开始在控制台中看到此消息
You should not have jade tags with multiple attributes
它被称为功能,here
0.33.0 / 2013-07-12
Hugely more powerful error reporting (especially with compileDebug set explicitly to true)
Add a warning for tags with multiple attributes
我在代码中看到了它。 https://github.com/visionmedia/jade/blob/a38aa552f6f53554ac5605299b6b8c7e07cbdf1f/lib/parser.js#L662
但是,它真正意味着什么。我什么时候会收到这个警告。例如,我什么时候会根据以下代码收到错误(它可以在没有警告的情况下工作,但想知道我什么时候会收到错误,以便我可以与我的代码进行比较)
mixin link(href, name)
a(class=attributes.class, href=href)= name
a(href=href, attributes)= name
+link('/foo', 'foo')(class="btn")