使用Rails 2.3.15
和paperclip 2.3.0
很容易显示图像如下:即
@product.img_url.url
现在,我已经加入了两个表,并且我想从加入的结果中获取并显示图像。
例如
@searchItems = Product.find(:all, :select => "p.id, p.title, p.img_url, p.img_url_file_name, p.img_url_content_type, p.img_url_file_size, p.url, pp.selling_price",
:conditions => "p.category = 'Mobiles'",
:joins => "as p inner join product_pricings as pp on p.id = pp.product_id")
searchItems
是一个array
。我如何从 中获取图像array
,就像从模型中获取一样。
任何帮助都会帮助我很多。