ruby-on-rails – 添加用户名来设计rails 4

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 添加用户名来设计rails 4前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个使用设计的rails 4应用程序.我正在尝试允许用户使用与之关联的用户名.

我已经在Users表中添加了一个用户名(字符串)列,并且我的应用程序控制器看起来像这样:

class ApplicationController < ActionController::Base

    before_filter :configure_permitted_parameters,if: :devise_controller?
    protect_from_forgery with: :exception
    protected
    def configure_permitted_parameters
       devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username,:email) }
    end

end

我还在users / sign_up页面添加用户名字段.

但我得到这个错误

undefined local variable or method `devise_parameter_sanitizer' for #<Devise::RegistrationsController:0x00000101378a28>

所以基本上我的问题是为什么会出现这个错误,或者我怎样才能让用户获得用户名

谢谢大家的帮助!

解决方法

您只允许在登录方法中允许用户名,但我假设您在创建新用户时,它是在注册方法上.所以试试这个:
def configure_permitted_parameters
   devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:username,:email,:password,:password_confirmation) }
end

资料来源:https://github.com/plataformatec/devise#strong-parameters

原文链接:https://www.f2er.com/ruby/269145.html

猜你在找的Ruby相关文章