我有这种类型的代码
module PhotosHelper
def photo_default_image_url(photo)
if photo.image_url == "/assets/image.jpg"
URI.join(root_url, "/assets/image.jpg")
else
photo.image_url(:thumb)
end
end
end
and image code is
<img src="<%= photo_default_image_url(@photo) %>">
它适合发展情绪。
我得到了像这样的网址
http://localhost:3000/assets/image.jpg
但它不适合生产情绪
我得到了像这样的网址
/image.jpg
请帮我解决这个问题。 谢谢