1
class Agency < ActiveRecord::Base
  has_many :events

  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  attr_accessible :name, :email, :phone, :address, :city, :state, :zip,
                  :notes, :is_admin, :password, :password_confirmation, :remember_me
end

class Event < ActiveRecord::Base
  belongs_to :agency
  has_many :consumers
 end

class Consumer < ActiveRecord::Base
  belongs_to :event
end

在消费者控制器中,我试图包含代理的一些字段

 active_scaffold :consumer do |conf|
    list.columns = [
      :agency, :event
    ]
 end

有这样的关联机构 -> 事件 -> 消费者。代理和消费者之间没有关联,只是通过事件。

但这会导致错误。

如何包括列出任何字段形式的代理表?

4

2 回答 2

0

根据wiki,我认为您想要的是:

active_scaffold :consumer do |conf|
  conf.columns = [:agency, :event]
end

此外,确保消费者有一个代理协会或专栏。

于 2013-02-05T21:53:40.400 回答
0

解决方案非常简单,但很可能效率低下。

我在消费者模型中添加了一个方法:

class Consumer < ActiveRecord::Base
  ...

  def agency_name
    self.event.agency[:name]
  end
end

然后我添加了一个虚拟列来列出:

list.columns = [
  :agency_name, :event, ... ]

就这样。

于 2013-02-06T08:43:39.437 回答