gpt4 book ai didi

ruby-on-rails - RoR : Are devise controllers generated automatically or should we write on our own?

转载 作者:行者123 更新时间:2023-12-04 04:54:26 35 4
gpt4 key购买 nike

我是 ruby​​ on rails 的新手。我正在尝试使用设计 gem 进行身份验证。我正在阅读 github 中的教程。我已经使用 rails generate devise:views 创建了设计 View 。但我没有找到任何 Controller 。我需要自己创建还是有任何命令可以为其生成 Controller ?
请帮忙

最佳答案

Devise 已经在幕后为您创建了所需的 Controller 。这些 Controller 中很少有:RegistrationController , SessionController .

要自定义或覆盖任何 Controller ,请说 RegistrationController ;您可以执行以下操作(来自我的一个应用程序的片段):

class RegistrationsController < Devise::RegistrationsController
before_filter :admin_user, :only => [:destroy]

def new
super
end

def create
if simple_captcha_valid? #verifying user registration by captcha
super
else
build_resource
clean_up_passwords(resource)
flash.now[:alert] = "There was an error with the captcha code below. Please re-enter the code."
render :new
end
end

def update
# required for settings form to submit when password is left blank
if params[:user][:password].blank?
params[:user].delete("password")
params[:user].delete("password_confirmation")
end

@user = User.find(current_user.id)
if @user.update_attributes(params[:user])
set_flash_message :notice, :updated
# Sign in the user bypassing validation in case his password changed
sign_in @user, :bypass => true
redirect_to after_update_path_for(@user)
else
render "edit"
end
end

def destroy
@user = User.find(params[:id])
@user.destroy
redirect_to rooth_path
end
end

更多内容可以关注: https://github.com/plataformatec/devise#configuring-controllers

关于ruby-on-rails - RoR : Are devise controllers generated automatically or should we write on our own?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16962746/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com