我是RoR的新手,我正在努力应对这个基本的项目要求。
我正在使用Devise进行用户身份验证,该工作正常,并且在使用Devise注册用户帐户时,我在注册控制器中使用自定义重定向到用户可以创建其配置文件的新页面。注册后,我不断收到以下错误:
“表单中的第一个参数不能包含nil或为空”。有人能指出我正确的方向吗?提前谢谢!
以下代码:
注册控制器:
class RegistrationsController < Devise::RegistrationsController
protected
def after_sign_up_path_for(resource)
new_path(resource)
end
end
创建新的个人资料页面
<%= form_for @profile do |f| %>
<div class="field">
<%= f.label :name %>
<%= f.text_field :name %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
个人资料控制器:
class ProfileController < ApplicationController
def new
@profiles = current_user.build_profile
end
def create
@profiles = current_user.build_profile(params[:profile].permit( :name))
end
end
个人资料模型:
class Profile < ActiveRecord::Base
belongs_to :user
end
用户模型:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
validates :name, presence: true
has_one :profile
end
数据库架构文件:
ActiveRecord::Schema.define(version: 20131124211354) do
create_table "profiles", force: true do |t|
t.integer "user_id"
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", force: true do |t|
t.string "name"
t.string "location"
t.string "email", default: "", null: false
t.string "phone"
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
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
答案 0 :(得分:1)
在您的ProfileController中,您指定了@profiles = current_user.build_profile
,但在表单中,您引用了form_for @profile do |f|
。注意复数的差异。在控制器中将其更改为@profile,你应该好好去......