无法在设计中使用辅助方法`current_user`

问题描述 投票:0回答:1

我正在使用 nextjs 和 Rails 构建一个简单的待办事项应用程序。 我正在使用 devise 进行用户身份验证,但无法使用 current_user。 具体来说,我使用 JSON API Serializer 将登录期间的用户信息以 JSON 格式返回到前端。这是轨道路线。

routes.rb

Rails.application.routes.draw do
  # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
  root to: 'health_check#index'

  devise_for :users, skip: %w[registrations sessions]
  devise_scope :user do
    namespace :api do
      namespace :v1 do
        resource :current_user, controller: 'devise/current_user', only: %i[show]
        resource :user_sessions, controller: 'devise/user_sessions', only: %i[create destroy]
        resources :users, controller: 'devise/users' , only: %i[create]
      end
    end
  end
end

以下是 api/v1/devise/current_user_controller.rb

# frozen_string_literal: true

module Api
  module V1
    module Devise
      class CurrentUserController < ApplicationController
        module Consts
          RESP_FIELDS = %i[id email name].map(&:freeze).freeze

          Consts.freeze
        end

        def show
          with_rescue(__method__) do
            render json: current_user_serializable_hash.to_json, status: :ok
          end
        end

        private

        def current_user_serializable_hash
          UserSerializer.new(current_user, { fields: { user: Consts::RESP_FIELDS } }).serializable_hash
        end
      end
    end
  end
end

控制器/application_controller.rb

# frozen_string_literal: true

class ApplicationController < ActionController::API
        include ActionController::Cookies
        include WithRescueConcern
end

这里是app/serializers/user_serializer.rb

# == Schema Information
#
# Table name: users
#
#  id                     :bigint           not null, primary key
#  email                  :string(255)      default(""), not null
#  name                   :string(255)      not null
#  created_at             :datetime         not null
#  updated_at             :datetime         not null
#
# Indexes
#
#  index_users_on_email                 (email) UNIQUE
#  index_users_on_name                  (name)
#
class UserSerializer < BaseSerializer
  attributes :id, :email, :name
end

base_serializer.rb

# frozen_string_literal: true

class BaseSerializer
  include JSONAPI::Serializer

  set_key_transform :camel_lower
end

错误会如下 前面返回的JSON值为null。

{"data":null}

但是,为了隔离问题,我将 current_user_controller 中的 current_user_serializable_hash 方法更改为此。

def current_user_serializable_hash
  UserSerializer.new(current_user, { fields: { user: Consts::RESP_FIELDS } }).serializable_hash
end
↓
def current_user_serializable_hash
  UserSerializer.new(User.find(1), { fields: { user: Consts::RESP_FIELDS } }).serializable_hash
end

然后以 JSON 格式返回响应,如下所示。

{
    "data": {
        "id": "1",
        "type": "user",
        "attributes": {
            "id": 1,
            "email": "[email protected]",
            "name": "hoge1"
        }
    }
}

换句话说,current_user 方法不起作用。我想知道为什么。我不知道。有谁知道发生了什么事吗?谢谢。

附注----------------------------------

我已将部分用于登录的 user_sessions_controller 代码添加到文本正文中。

# frozen_string_literal: true
module Api
  module V1
    module Devise
      class UserSessionsController < ApplicationController

        def create
          with_rescue(__method__) do
            user = User.find_for_authentication(email: user_session_params[:email])
            raise ApplicationController::UnauthorizedError, 'email' if user.blank?

            is_success = user&.valid_password?(user_session_params[:password])
            raise ApplicationController::UnauthorizedError, 'password' unless is_success

            bypass_sign_in(user)
            head :no_content
          end
        end
json ruby-on-rails ruby serialization devise
1个回答
0
投票

我自己解决了这个问题。 具体来说,我将以下内容添加到

config/environments/development.rb

config.cache_store = :redis_cache_store, { expires_in: 7.days, # TODO: 仮設定
                                               namespace: "#{Rails.application.class.module_parent_name.downcase}:#{
                                                   (ENV.fetch('RAILS_ENV', 'development') + ':').then.detect { |e| e != 'production:' }
                                                 }cache",
                                               url: "redis://#{ENV.fetch('REDIS_HOST', 'localhost')}:#{ENV.fetch('REDIS_PORT', '6379')}/0" }

    config.public_file_server.headers = {
      'Cache-Control' => "public, max-age=#{2.days.to_i}"
    }

谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.