在我的應用程序中,我試圖用if
部分檢查2個條件。但不工作。我沒有得到的結果太..下劃線模板 - 如何檢查多個條件
這裏是我的病情,我用什麼:
<% _.each(recourseParameter, function (item, index) { %>
<% if (index % limit == 0) { %>
<%= _.template($('#header').html())({"parameterCode":parameterCode}) %>
<% } %>
<% if(item.description) { %>
<tr>
<td colspan=5><%= item.description %></td>
</tr>
<% } %>
<% if (((index+1) % limit == 0) && ((index +1) != limit)) { %> // this is not working!
<%= _.template($('#closer').html())() %>
<span>Continue ... </span> //this is not printing..
</div>
<% } %>
<% }) %>
你介意檢查什麼是在控制檯日誌中的錯誤?我得到這個錯誤:無法加載資源:net :: ERR_TUNNEL_CONNECTION_FAILED https://dl.dropboxusercontent.com/u/6257603/recourseParameter.json 錯誤:錯誤,但它可能是網絡在這裏無法連接到保管箱。我會在家裏再試一次。在你身邊可以嗎? – Hatjhie 2014-09-29 05:50:22
這對我來說工作得很好。可能是這個URL被禁止給你。如果你希望讓我給你基於靜態數據的例子? – 3gwebtrain 2014-09-29 06:16:18
@Hatjhie - 這裏是放置在小提琴演示中的數據:http://jsfiddle.net/ffk5raqL/4/ – 3gwebtrain 2014-09-29 06:20:37