2011-10-19 51 views
0

我正在嘗試使用_.select方法返回匹配某個類別的人數組。稍後我將在腳本中使用它將它們添加到我的span標記中。但是現在,當我嘗試運行此代碼時,出現錯誤。錯誤:非法字符使用帶下劃線方法的模板

另一個筆記數據是我傳入模板的對象。

<script id="product" type="text/template">   
    <p><span>Director</span><span class='director'> 
     <% var people= _.select(data.artists, function(item){ 
    return item.name == 'painter'; 
    })%> 
    </span> 
</script> 

回答

1

您需要在模板標籤末尾添加分號。

<script id="product" type="text/template">   
    <p><span>Director</span><span class='director'> 
     <% var people= _.select(data.artists, function(item){ 
     return item.name == 'painter'; 
    }); %> 
    </span> 
</script>