6
def destroy
  @dignity.destroy
end

对不起,那不是代码,这就是我现在的感受。我知道有很多关于 Devise 的初学者问题,我想我几乎看过每一个问题。

我在 Rails 3 中有一个非常简单的设计设置。我做了:

rails 生成设计用户

我也在运行 rails 3 GeoKit 插件,(不确定这是否相关,只知道我有这个其他模型)所以我有另一个模型,称为 Location,它是acts_as_mappable。

在发布代码之前,基本问题是我似乎无法让 user_id 自动递增。我的理解是,如果我在 Location 类中添加一个名为 user_id 的列,那么一点 Rails 魔法应该会为我解决这个问题。(我是通过迁移完成的。)然后相应地设置 has_many 和 belongs_to 。(见下文)

我不明白为什么 user_id 总是为零。它与设计引擎的工作方式有关吗?我很确定我在过去以同样的方式使这种类型的关联工作,当我不使用 Devise 时。

用户.rb:

class User < ActiveRecord::Base

  has_many :locations

  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable, :lockable and :timeoutable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me
end

位置.rb:

class Location < ActiveRecord::Base
  belongs_to :user


  attr_accessible :street_adress, :city, :state, :zip, :item, :user_id
  acts_as_mappable :auto_geocode => true

  def address
    return "#{self.street_adress}, #{self.city}, #{self.state}, #{self.zip}, #{self.item}"
  end

end

这是添加列的迁移:

class AddUseridToLocation < ActiveRecord::Migration
  def self.up
    add_column :locations, :user_id, :integer
  end

  def self.down
    remove_column :locations, :user_id
  end
end

最后,这里是 schema.rb:

ActiveRecord::Schema.define(:version => 20110213035432) do

  create_table "locations", :force => true do |t|
    t.string   "street_adress"
    t.string   "city"
    t.string   "state"
    t.string   "zip"
    t.float    "lat"
    t.float    "lng"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "item"
    t.integer  "user_id"
  end

  create_table "users", :force => true do |t|
    t.string   "email",                               :default => "", :null => false
    t.string   "encrypted_password",   :limit => 128, :default => "", :null => false
    t.string   "password_salt",                       :default => "", :null => false
    t.string   "reset_password_token"
    t.string   "remember_token"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",                       :default => 0
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "users", ["email"], :name => "index_users_on_email", :unique => true
  add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true

end

编辑:只要我能在正确的方向上得到一点推动,我就可以接受 RTFM 的回应。我怀疑我需要在我的 locations_controller.rb 的创建操作中告诉 Rails 一些事情?有人在这里给我一点提示!

4

1 回答 1

10
def destroy
  @dignity.destroy
end

显然首先要做的是:

raise self.esteem

您说您无法user_id使用“自动增量”。我认为您的意思是未分配 user_id(即始终为零)。您可以显示为用户分配位置的代码部分吗?这些中的任何一个都应该起作用:

@user.locations.build
@user.locations << Location.new

编辑

稍微扩展一下,假设您有一个如下所示的请求:

POST /users/37/locations

并且提交的表单包含input name=user[location][name] value="Paris". 典型的 Rails 控制器创建操作可能如下所示:

def create
  @user = User.find(params[:user_id])
  @user.locations.build(params[:user][:location])
  if @user.save
    flash[:notice] = "Location created successfully"
    redirect_to user_locations_path(@user)
  else
    render :new
  end
end

“魔术”基本上是 Rails 从has_many语句中推断出它需要在位置表的相关行中设置外键列 ('user_id') 的值。当您调用@user.save它时,它会在其中添加一个新行locations并设置user_id@user.id.

于 2011-02-16T02:54:56.270 回答