我正在尝试将我已“存储”在数据库中的特定类型的图像显示在视图上。我有一个“产品”模型和一个“图像”模型,因为我有几种类型的图像为每个产品(如“画廊”,“特色”,“拆箱图像”,它们简单地存储为0型属性,1或2)
我把它放到了HTML中:
<%= image_tag @product.images.where(image_type: 2).first, :alt => 'product_image' %>
当我点击检查元素时,我看到了:
<img alt="product_image" src="/images/#<Image:0x007fcba329f4c0>">
有人可以解释为什么会发生什么事吗?它看起来像是在我的assets / images文件夹中搜索图像,但那是什么#&lt;那里有这样的?我的图像存储为数据库中的lamp.png。
这是我的图像模型:
class Image < ActiveRecord::Base
include AASM
belongs_to :product
mount_uploader :file, FileUploader
validates :image_type, presence: true
enum image_type: [IMAGE_UNBOXING.to_s, IMAGE_GALLERY.to_s, IMAGE_FEATURED.to_s]
aasm column: :image_type do
Image.image_types.keys.each do |state_string|
state state_string.to_sym
end
end
end
谢谢。
答案 0 :(得分:3)
@product.images.where(image_type: 2).first
从数据库返回第一条记录,但对于image_tag
,您应为返回的记录指定url
或path
。
使用url
attribut或您拥有的内容:
<%= image_tag @product.images.where(image_type: 2).first.url, :alt => 'product_image' %>
^^^
答案 1 :(得分:1)
发生了什么:image_tag使用object#to_s方法返回模型identyfication
图像 - 对象类 0x007fcba329f4c0 - 对象实例的id
* _path助手仅适用于控制器,因为它们是请求(浏览器)交互的对象。
我创建了一个单独的控制器ImagesController,只有#show动作。然后在视图中显示图像(例如&lt;%= @ image.data%&gt;)。然后image_tag将采用image_path(@ product.images.where(image_type:2).first)。
请确保您发送的是正确的MIME类型: http://api.rubyonrails.org/classes/Mime/Type.html