ねえ、私はレールに非常に慣れていないので、助けていただければ幸いです。
すべてのユーザーには、自分のすべてのイベントを表示するプロファイルページがあります。すべてのイベントには多くのアセット(画像)があります。また、すべてのイベントには独自のイベントページがあります。私が苦労しているのは、ユーザープロファイルページにイベント(存在する場合)を表示して参加する方法です。
私のプロファイルコントローラーには、イベントを取得するために:@events = User.joins(:events)がありますが、関連する画像を取得するためにアセットテーブルにドリルダウンする必要があります(今のところ、そのためにそこにある画像を取得したいだけですイベント、後で「メイン画像」フラグを追加します)。
これが私のモデルです。
class Asset < ActiveRecord::Base
belongs_to :event
has_attached_file :image,
:styles => {
:thumb=> "100x100#",
:small => "300x300>",
:large => "600x600>"
},
:storage => :s3,
:s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
:path => ":attachment/:id/:style.:extension",
:bucket => 'wpt-assets'
end
class Event < ActiveRecord::Base
attr_accessible :name, :budget, :client, :date, :description, :venue, :attendees,
:assets_attributes
belongs_to :user
has_many :assets#, :dependent => destroy
accepts_nested_attributes_for :assets
end
class User < ActiveRecord::Base
rolify
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :role_ids, :as => :admin
attr_accessible :username, :email, :password, :password_confirmation,
:remember_me,:avatar, :bio, :title, :company,:facebook,:twitter,:pinterest,:linkedin
validates_presence_of :username
validates_uniqueness_of :username, :email, :case_sensitive => false
has_many :events
has_attached_file :avatar,
:styles => {
:medium => "100x100>",
:thumb => "24x24>" }
def to_param
username
end
end