我正嘗試在rails 2.3應用程序中使用underscore.js模板進行模板製作,不是有jammit作爲資產包裝器。Rails with Underscore.js模板
下面是簡單的模板:
<script type="text/template" id="q-template">
<div class="current-body">
<span class="q-index"><%= title %></span>
<span class-"q-text"><%= body %></span>
</div>
</script>
的Rails試圖解析這些爲僱員再培訓局變量,會引發ArgumentError。在這種情況下,如何使用下劃線模板來良好地使用滑軌?我哪裏錯了?
謝謝,這個工程。我正在瀏覽_.template的文檔,並且在那裏提到了_.templateSettings,但是當我設置項目時,它不知何故跳過了我的想法,並一直認爲這可能與jammit有關。 – papdel
謝謝FYI:http://documentcloud.github.com/underscore/#template和http://stackoverflow.com/questions/5771742/underscore-js-templates-within-jsp – Francois
使用'{{}}'和'如果您想在模板中使用if(x){}樣式塊,{{=}}會導致問題。在這種情況下使用'[%%]'和'[%=%]'可能會更容易: –