我想在标记信息窗口中显示我的产品图片,但是我收到了错误的链接错误:
qmxjai8cmuuve5mnpf4y.jpg:1个
获取localhost:3000 / v1503135294 / qmxjai8cmuuve5mnpf4y.jpg 404(未找到)
我不知道如何在我的infowindow中包含一个cloudinary链接。
我的信息:
def gmaps4rails_infowindow(bien)
"
<div class='col-xs-6'>
<a href='#{user_path(product.user)}', class='btn btn-fill btn-danger btn-sm'>Accéder au profil</a>
</div>
<img src=\"#{product.user.photo.path}\" style='width: 200px; height: auto; margin: 10px; border-radius: 5px; text-align: center;'>
"
end
我如何在我的视图中显示它:
<%= cl_image_tag user.photo.path, height: 100, width: 200 %>