アンダースコアを使用して JSON データをテンプレートに変換しています。
$(document).ready(function(){
var template = $("#furniture-template").html();
$furnitureList = _.template(template, {things: things});
});
正常にロードされ、通常のページ更新を行うと正常に動作します。しかし、(history.js と ajaxify.js を使用して) ajax 経由でページを読み込むと、次の 2 つのエラーが発生します。
Error: SyntaxError: syntax error
Source Code: <% _.each(things,function(thing,key,list){ %>
と
Error: TypeError: n is undefined
Source File: http://192.168.0.20:8888/metropolis/library/themes/metropolis/assets/js/plugins/underscore.js
以下はテンプレートスクリプトです。
このようなアンダースコアエラーの経験はありますか? これをデバッグするにはどうすればよいですか、またはここで間違っていることを誰かが指摘できれば、それは素晴らしいことです。
ありがとう!
<script type="text/html" id='furniture-template'>
<div class="accordion collapse">
<div class="accordion-group">
<% _.each(things,function(thing,key,list){ %>
<div class="accordion-heading">
<a class="accordion-toggle ic-minus block collapsed" data-toggle="collapse" href="#things-<%= thing.slug %>">
<%= thing.title %>
</a>
</div> <!-- header -->
<div id="things-<%= thing.slug %>" class="accordion-body collapse">
<div class="accordion-inner">
<% for(var item in thing.items) { %>
<div class="item">
<% if( thing.items[item].images == true ) { %>
<a data-target="<%= thing.items[item].slug %>-gal" class="img-link ic-cam fl" title="View an example"></a>
<% } %>
<a
class="item-add ic-plus"
data-title="<%= thing.items[item].title %>"
data-slug="<%= thing.items[item].slug %>"
data-img="<%= thing.items[item].images %>"
data-shorthand="<%= thing.items[item].shorthand %>"
data-price="<%= thing.items[item].price %>"
>
<%= thing.items[item].title %>
</a>
</div>
<% } %>
</div> <!-- inner -->
</div> <!-- accordion-body -->
<% }); %>
</div>
</div>
</script>