Rails的新手,我已经阅读了协会手册,并试图找到我的协会无法正常工作的答案。
我选择将配置文件与用户分开以便于与不同用户类型和功能的关联 - 我将为每种类型的用户提供3-4种不同的模型。
我有:
使用Devise的用户模型 轮廓模型称为脾气 仪表板视图
如果我试图在仪表板上为当前用户调用Profile模型中的信息,则如果我正在阅读指南,则“应该”下面的代码可以正常工作。
错误是:
enter code hereundefined method `temp_phone_n' for #<User:0x007fbb8c62e4c8>
我看到它正在接收当前用户并尝试关联它但无济于事。 谁能告诉我哪里出错了。
下面:
user.rb
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me,
:first_name, :last_name, :profile_name, :user_id
# attr_accessible :title, :body
has_one :temper
def full_name
first_name + " " + last_name
end
end
Temper.rb
class Temper < ActiveRecord::Base
attr_accessible :first_name, :last_name, :temp_about, :temp_avail, :temp_city, :temp_country, :temp_email, :temp_phone_d, :temp_phone_n, :temp_pors, :temp_skills, :temp_st_address_1, :temp_st_address_2, :user_id
has_one :user
end
仪表板/ index.html.erb
<div class="span5">
<ul>
<li><h4>Name:</h4> <%= current_user.full_name %></li>
<li><h4>Phone Number:</h4> <%= current_user.temp_phone_n %></li>
<li><h4>Email:</h4> <%= current_user.email %></li>
<li><h4>City:</h4> Toronto</li>
<li><h4>Member Since:</h4> <%= current_user.created_at.strftime("%B %d, %Y") %></li>
</ul>
</div>
任何帮助将不胜感激
答案 0 :(得分:1)
你可以这样访问它:
current_user.temper.temp_phone_n
你的关系是错误的,你不能把has_one写在关系的两边
User.rb
has_one :temper
Temper.rb
belongs_to :user