0

我的应用程序有一个 habtm 关系 b/w 列表和类别。现在从类别索引页面,用户过滤选择框以查看显示页面中的列表。

现在我无法访问附加到类别显示页面中列表的图像。

清单.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>

在轨道上使用回形针宝石红宝石的视图中从不同视图访问图像

这表示使对象复数并调用循环,wch 应允许访问图像。

在这种情况下它不起作用。

undefined method `placeholder' for #<Category:0x5c78640>

但令人惊奇的是,如果按照stackoverflow 中的建议使用,占位符将显示为所有列表的所有图像的数组,显然,wch 不是我喜欢的方式。问题出在哪里

4

1 回答 1

0

因为类别没有方法占位符,而是有

更新:

@category.listings.each  do  |l| 
  l.placeholder
end

更新

尝试获取类别,然后遍历其列表

def show 
  @category = Category.find(params[:id]) #you get category and you able to loop throgh it listing array and get it placeholder
end

更新

@categoies.each_with_index  do  |c| 
  c.listings.each do |l|
    l.placeholder
  end
end

更新2:

@categoies.each_with_index  do  |c,i| 
  c.listings.each do |l|
    image_tag l.placeholder.url(:thumb)
  end
end
于 2013-11-02T20:31:20.353 回答