我正在研究 Addy Osmani 的 Backbone Fundamentals 教程。http://addyosmani.github.io/backbone-fundamentals/#application-view
并且在 Chrome 中收到“ Uncaught SyntaxError: Unexpected token % ”。
它指向 Underscore.js 中的一行,也是我的views/app.js 中的一行。
在views/app.js 中,它指向的行是:
statsTemplate: _.template( $('#stats-template').html() ),
它在错误消息中显示“匿名函数”。这是从教程中复制的,所以我不确定它为什么会抛出错误。谢谢
模板标记:
<script type="text/template" id="stats-template">
<span id="todo-count">
<strong>
<%= remaining %>
</strong>
<%= remaining === 1 ? 'item':'items'%> left
</span>
<ul id="filters">
<li>
<a class="selected" href="#/">All</a>
</li>
<li>
<a href="#/active">Active</a>
</li>
<li>
<a href="#/completed">Completed</a>
</li>
</ul>
<% if(completed) {% >
<button id="clear-completed">Clear completed (<%= completed %>)</button>
<% } %>
</script>