私は、Userに属するアクティベーションモデルを持っています。ユーザーがビューに投稿したアクティベーションの情報を表示しようとしていますが、これを行う方法がわかりません。例えば、 2つのRailsモデルからデータを取得する
class Activation < ApplicationRecord
belongs_to :user
default_scope -> { order(created_at: :desc) }
validates :user_id, presence: true
validates :dealer_store, presence: true, length: { maximum: 50 }
validates :customer_name, presence: true, length: { maximum: 50 }
validates :customer_phone_number, presence: false, length: { maximum: 10 }
class User < ApplicationRecord
has_many :activations
validates :name, presence: true, length: { maximum: 50 }
私は、ユーザーの活性化のcustomer_phone_numberを得るでしょうどのように
<%= activation.user.dealer_store %>
のように、ユーザIDとアクティベーションのユーザからデータを取得することができるのですか?私は、ユーザーが最初にあなたが望むどの活性化数を決定する必要があります多くのアクティベーションを持っているので、あなたがここにhttps://bitbucket.org/QuriouslyStrong/sample_app
'activation.user.dealer_store'を使用することができます 、これを試すことができます。 –