我正在尝试将自定义字段添加到我的用户注册和编辑页面,我曾经做过一种方式,但是使用新的rails并设计它似乎不起作用。我尝试从设计git阅读其他主题和自述文件,但没有运气!
这是我的registrations_cotroller.rb:
class RegistrationsController < Devise::RegistrationsController
before_filter :update_sanitized_params, if: :devise_controller?
def update_sanitized_params
devise_parameter_sanitizer.for(:sign_up) {|u| u.permit(:name, :phone, :cpf, :email, :password, :password_confirmation)}
devise_parameter_sanitizer.for(:account_update) {|u|u.permit(:name, :phone, :cpf, :email, :password, :password_confirmation, :current_password)}
end
end
这是我的观点:
<h2>Sign up</h2>
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :email, :required => true, :autofocus => true %>
<%= f.input :phone %>
<%= f.input :password, :required => true %>
<%= f.input :password_confirmation, :required => true %>
</div>
<div class="form-actions">
<%= f.button :submit, "Sign up" %>
</div>
<% end %>
<%= render "devise/shared/links" %>
这是我得到的错误:
/ users / sign_up
中的NoMethodError#
的未定义方法`phone'
我是否需要更改任何其他文件才能达到我的目的?
由于