0

我有两个模型:用户和商店

class Store < ActiveRecord::Base
  belongs_to :user

class User < ActiveRecord::Base
  has_one :store

Schema looks like this:

create_table "users", :force => true do |t|
    t.string   "name"
    t.string   "email"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "encrypted_password"
    t.string   "salt"
    t.boolean  "admin",              :default => false
    t.string   "username"
    t.string   "billing_id"
  end

create_table "stores", :force => true do |t|
    t.string   "email"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "store_name"
    t.integer  "user_id"
  end

用户必须登录才能通过输入“email”和“store_name”来注册商店。从stores_controller 创建看起来像这样:

def create

  @store = Store.new(params[:store])
  if @store.save
    @store.user_id = current_user.id 
    flash[:success] = "this store has been created"
    redirect_to @store
  else
    @title = "store sign up"
    render 'new'
  end
end

在应用程序控制器中

def current_user
    @current_user ||= user_from_remember_token
end

但是,当我签入数据库时​​,@store.user_id = nil。由于某种原因,它无法将 current_user.id 放入 @store.user_id。任何人都可以帮助检测为什么会这样?我以为我已经正确实施了关联。谢谢

4

1 回答 1

2

发生这种情况是因为您正在设置@store.user_idAFTER 保存它。

理想情况下,您应该为此使用关联构建器:

def new
  @store = @current_user.store.build(params[:store])

有关这些的更多信息可以在“关联基础”指南中找到。

于 2011-04-03T20:33:05.957 回答