0

我在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:对不起,我的英语还不是很好。

4

2 回答 2

4

如果它是两个模型之间的一对一关系has_one,则必须在表中没有外键的一侧使用。所以在这种情况下,而不是:

belongs_to :startup

你所要做的:

has_one :startup
于 2012-12-04T15:06:40.453 回答
2

我是 Rails 的新手,所以如果我错了,有人会纠正我,但我认为你不能拥有 2 个彼此“属于”的模型。1 必须属于,1 必须具有 has_many 或 has_one (编辑:根据评论,它应该是:has_one.

我认为这可能是您正在寻找的:

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

  has_one :startup # not has_many :startups
end

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
于 2012-12-04T15:07:14.840 回答