0
images.js.coffee.erb文件:圖像的URL不工作
<%
imgs = {}
Dir.chdir("#{Rails.root}/app/assets/images/bg/") do
imgs = Dir["**"].inject({}) {|h,f| h.merge! f => image-url(f)}
end
%>
window.image_path = (name) ->
<%= imgs.to_json %>[name]
page.js.coffee文件:(獲取圖像路徑)
icon=image_path("myfile.jpb")
錯誤:
undefined local variable or method `image' for #<#<Class:0x007ffdaac7cd88> on line 4
4 imgs = Dir["**"].inject({}) {|h,f| h.merge! f => image-url(f)}
問題變成我的圖像URL()方法似乎並沒有工作。爲什麼會IMAGE_PATH()的工作,但圖像的URL不起作用?
謝謝
你的意思'image_url'吧? –