我在rails中的两个模型之间有一个belongs_to到belongs_to的关系。我有模型用户和模型启动
模型用户是一个设计模型(gem devise)。
这是我的代码。
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :confirmable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me, :startup_name
# attr_accessible :title, :body
belongs_to :startup
end
这是我的模型 Startup
class Startup < ActiveRecord::Base
attr_accessible :angelist, :capitalraise, :category, :country, :currentlocation, :description, :facebook, :linkedin, :name, :round, :startupchile, :twitter, :user_id
has_one :entrepreneus, dependent: :destroy
belongs_to :user
end
同样在我的架构中,我在 Startup 表中添加了“user_id”。
这是添加的 add_index
add_index "startups", ["user_id"], :name => "index_startups_on_user_id"
(显然我做了迁移)
当我在第一时间创建 Startup 时,创建没有 user_id 的对象,但使用 update_attributes 在对象中添加 user_id。(在启动控制器中)。这是代码
def create
@startup = Startup.new(params[:startup])
@startup.update_attributes(:user_id => current_user.id )
respond_to do |format|
if @startup.save
format.html { redirect_to @startup, notice: 'Startup was successfully created.' }
format.json { render json: @startup, status: :created, location: @startup }
else
format.html { render action: "new" }
format.json { render json: @startup.errors, status: :unprocessable_entity }
end
end
end
在控制台中,我执行以下操作(rails c --sandbox)
u = User.first (retrieve the user perfectly, the id is equal to 1)
u.startup (retrieve null)
但如果你这样做:
s = Startup.find_by_user_id(1) // retrieve the data
为什么我无法使用 u.startup 检索与启动相关的数据?
任何的想法 ?。谢谢
PDT:对不起,我的英语还不是很好。