我有一個問題,我的Rails應用程序3:我在我看來,以顯示上傳進度條已經腳本(上傳過程的工作):[滑軌] jQuery的:語法錯誤,無法識別的表達
<h1>Ajouter des images:</h1>
<%= form_for [:admin, :gallery, @painting], html: { multipart: true} do |f| %>
<%= f.hidden_field :gallery_id %>
<%= f.label :image, "Upload paintings:" %>
<%= f.file_field :image, multiple: true, name: "painting[image]" %>
<% end %>
<script id="template-upload" type="text/x-tmpl">
<div class="upload">
{%=o.name%}
<div class="progress"><div class="bar" style="width: 0%"></div></div>
</div>
</script>
但是,當我嘗試上傳文件,我得到這個錯誤:
Uncaught Error: Syntax error, unrecognized expression: <div class="upload">
Argentina.gif
<div class="progress"><div class="bar" style="width: 0%"></div></div>
</div>
即將形式的jquery.js文件:
Sizzle.error = function(msg) {
throw new Error("Syntax error, unrecognized expression: " + msg);
我REA我不知道如何解決它,我已經尋求很多! 感謝您的幫助!
那麼,是jQuery的在你的代碼? – undefined 2013-02-20 17:26:59
在rails上的ruby中,jquery lib包含在「寶石」中,所以我沒有直接訪問該文件。感謝您的回答 ! – khcr 2013-02-20 17:34:01
沒有解決方案?我得到與其他HTML標籤完全相同的錯誤! – khcr 2013-02-21 15:35:00