使用jade时,遇到包含underscore模板的情况下如何解决
div#todoapp
div
h1 Todo
input(id='new-todo', type='text', placeholder='接下来要做什么?')
div#main
input(id='toggle-all', type='checkbox')
span.help-inline 标记所有事项 [双击修改]
ul#todo-list.unstyled
div#footer
//- 模板
script(type='text/template', id='item-template').
<div class="view">
<input class="toggle" type="checkbox" <%= done ? 'checked="checked"' : '' %> />
<%= title %>
<a class="destroy"></a>
</div>
<input class="edit" type="text" value="<%= title %>" />
3 回复
报错了
Invalid indentation, you can use tabs or spaces but not both
嗯 多谢 实在没想到缩进的问题也会导致错误