rails是否有办法将图像的src作为字符串获取?我正试图用javascript将图像嵌入第三方网站。
这是一般的想法(widget.js.erb):
var widgetImage = new Image();
widgetImage.src = "<=% Some groovy ruby code to just get the image src as a string %>"
有什么想法吗?
答案 0 :(得分:3)
是的,你正在寻找image_path
image_path('something.png')