我的应用与b / w列表和类别有habtm关系。现在,从类别索引页面,用户过滤选择框以在显示页面中查看列表。
现在我无法访问类别显示页面中附加到列表的图像。
listing.rb
attr_accessible :placeholder, :categories_ids
has_and_belongs_to_many :categories
has_attached_file :placeholder, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/images/:style/missing.png",
:url => "/system/:hash.:extension",
:hash_secret => "longSecretString"
类别控制器
def index
@categories = Category.all
end
def show
@categories = Category.find_by_sql ["select distinct l.* from listings l , categories c, categories_listings cl where c.id = cl.category_id and l.id = cl.listing_id and c.id in (?,?)" , params[:c][:id1] , params[:c][:id2]]
end
sql只过滤并显示显示页面中的列表,我可以在其中显示其属性,但无法访问占位符。请注意show中的复数@categories
类别显示页面
<ul>
<% @categories.each_with_index do |c, index| %>
<% if index == 0 %>
<li class="first"><%= c.place %></li>
<%= image_tag c.placeholder.url(:thumb) %>
<li><%= c.price %></li>
<% else %>
<li><%= c.place %></li>
<li><%= c.price %></li>
<%= image_tag c.placeholder.url(:thumb) %>
<% end %>
<% end %>
</ul>
Access image from different view in a view with paperclip gem ruby on rails
这说要使对象复数并调用循环,wch将允许访问图像。
在这种情况下不起作用。
undefined method `placeholder' for #<Category:0x5c78640>
但令人惊奇的是,占位符将显示为所有列表的所有图像的数组,如果按照堆栈溢出中的建议使用,wch显然不是我喜欢的方式。这是问题所在?我错过了什么?
答案 0 :(得分:0)
看了你的代码,我看到的直接问题是placeholder
是listing.rb
模型的一部分,而不是category.rb
ActiveRecord对象
当您调用ActiveRecord对象(例如@categories = Category.all
)时,将在Category
模型上创建ActiveRecord对象,这意味着必须像对象一样访问其中的任何依赖项 - &gt; @categories.listings
这些记录的关联是使用您在模型中创建的各种has_and_belongs_to_many
关联创建的,这些关联似乎正常工作
所以我的建议是将列表作为Category的依赖关系,如下所示:
<%= image_tag c.listings.first.placeholder.url(:thumb) %>
<强>更新强>
要显示列表的所有图片,您只需执行.each
循环,如下所示:
<ul>
<% @categories.each_with_index do |c, index| %>
<% if index == 0 %>
<li class="first"><%= c.place %></li>
<% c.listings.each do |listing| %>
<%= image_tag listing.placeholder.url(:thumb) %>
<% end %>
<li><%= c.price %></li>
<% else %>
<li><%= c.place %></li>
<li><%= c.price %></li>
<% c.listings.each do |listing| %>
<%= image_tag listing.placeholder.url(:thumb) %>
<% end %>
<% end %>
<% end %>
</ul>
ActiveRecord&amp;纸夹强>
我认为结论是:
您的SQL查询将从您的列表数据库中恢复“纯数据”。这没关系,但你想使用Paperclip的.url
函数,该函数只用ActiveRecord
激活(它创建一个图像对象并附加到ActiveRecord对象)
您的商家信息数据库包含以下列:
这些无法为您创建图像输出,因为图像文件存储在placeholder_file_name
当您使用Paperclip时,它会获取存储在这些列中的数据。创建一个ActiveRecord图像对象,然后使用c.listings.first.placeholder.url
调用该对象。注意placeholder
列根本不在数据库中;意思是在您可以使用其功能
ActiveRecord
调用Paperclip
你可以使用这样的查询(说实话,这是一个彻头彻尾的刺杀,但希望它可以让你更深入了解):
@categories = Category.joins(:listings).where(:id => [params[:c][:id1],params[:c][:id2]])