使用jade时,遇到包含underscore模板的情况下如何解决
发布于 11 年前 作者 tutudtutud 3762 次浏览 最后一次编辑是 8 年前
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

嗯 多谢 实在没想到缩进的问题也会导致错误

回到顶部