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 一些事情?有人在这里给我一点提示!