我希望有人可以提供帮助。我正在使用Devise gem来注册和签名用户。我有一个Profile控制器。当现有用户登录时,我希望将他们转到Profile的show.html.erb页面以查看他们的个人资料。我希望这可以在Sessions控制器下完成,但它似乎没有做任何事情
Sessions控制器代码是:
class Registrations::SessionsController < Devise::SessionsController
# before_action :configure_sign_in_params, only: [:create]
protected
def after_sign_in_path_for(resource)
profile_path(resource)
end
但是,当用户注册时,重定向在以下注册控制器下成功运行:
class RegistrationsController < Devise::RegistrationsController
# before_action :configure_sign_up_params, only: [:create]
# before_action :configure_account_update_params, only: [:update]
protected
def after_sign_up_path_for(resource)
new_profile_path(resource)
end.
我还希望在用户登录后有一个指向用户个人资料页面的链接,但是当我这样做时会引发以下错误
链接的application.html.erb代码如下(我尝试了许多不同的变量代替&#39; @个人资料&#39;但没有成功)
<li><%= link_to 'Show Profile', profile_path(@profile), :class => 'navbar-link' %></li>
我收到的错误是:
ActionController::UrlGenerationError in Profiles#index
No route matches {:action=>"show", :controller=>"profiles", :id=>nil} missing required keys: [:id]
我的路线(我不确定是否设置正确:
Rails.application.routes.draw do
resources :profiles
get 'profiles/:id', to: 'profiles#show'
get '/profiles/new' => 'profiles#new'
get '/profiles/edit' => 'profiles#edit'
get '/profiles/index' => 'profiles#index'
root to: 'pages#index'
devise_for :users, :controllers => { :registrations => "registrations" }
最后,我的个人资料控制器:
class ProfilesController < ApplicationController
before_action :set_profile, only: [:show, :edit, :update, :destroy]
def index
@search = Profile.search(params[:q])
@profiles = @search.result(distinct: true)
end
def show
@profile = Profile.find(params[:id])
end
def new
@profile = Profile.new
end
def create
@profile = Profile.new(profile_params)
respond_to do |format|
if @profile.save
format.html { redirect_to @profile, notice: 'Your Profile was successfully created' }
format.json { render :show, status: :created, location: @profile }
else
format.html { render :new }
format.json { render json: @profile.errors, status: :unprocessable_entry }
end
end
end
def edit
@profile = Profile.find(params[:id])
end
def update
respond_to do |format|
if @profile.update(profile_params)
format.html { redirect_to @profile, notice: 'Profile was successfully updated.' }
format.json { render :show, status: :ok, location: @profile }
else
format.html { render :edit }
format.json { render json: @profile.errors, status: :unprocessable_entity }
end
end
end
def destroy
@profile.destroy
respond_to do |format|
format.html { redirect_to profile_url, notice: 'Profile was successfully destroyed.' }
format.json { head :no_content }
end
end
def set_profile
@profile = Profile.find(params[:id])
end
private
def profile_params
params[:profile][:user_id] = current_user.id
params.require(:profile).permit(:full_name, :contact_number, :location, :makeup_type, :bio, :user_id, :image)
end
end
非常感谢任何帮助。
答案 0 :(得分:1)
好的,有两个问题:
登录后重定向
您需要将控制器添加到路线定义中(就像您已注册。
<%= if current_user %>
<li>
<%= link_to 'Show Profile', profile_path(current_user.profile), :class => 'navbar-link' %>
</li>
<% end %>
应用程序布局中的Url生成错误
我假设配置文件模型与用户相关联(例如,配置文件belongs_to用户,或者用户has_one配置文件)。我还假设你想要一个当前用户个人资料的链接。
如果是这种情况,那么你很可能会做这样的事情:
@profile
否则,您应该在应用程序控制器或使用应用程序布局的任何控制器中的某些before_action
中设置{{1}}。
答案 1 :(得分:0)
在您的应用程序控制器中,您需要类似这样的内容
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
def after_sign_in_path_for(user)
profile_path(current_user)
end
#user is the model name for example that you created with devise
end