在rails上的ruby中关系belongs_to到belongs_to

时间:2012-12-04 15:03:12

标签: ruby-on-rails ruby ruby-on-rails-3

我在rails中的两个模型之间有一个关系belongs_to到belongs_to。我有模型用户和模型Startup

模型User是一个设计模型(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

同样在我的架构中,我在启动表中添加了“user_id”。

这是添加的add_index

  add_index "startups", ["user_id"], :name => "index_startups_on_user_id"

(Obviusly我做了一次迁移)

当我在第一时间创建启动时,创建没有user_id的对象,但是使用update_attributes在对象中添加user_id。 (在startup_controller中)。这是代码

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

2 个答案:

答案 0 :(得分:4)

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

belongs_to :startup

你必须这样做:

has_one :startup

答案 1 :(得分:2)

我是铁杆的新手,所以如果我错了,有人会纠正我,但我认为你不能拥有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