2

jquery-file-upload を使用して、レールを使用してキャリアウェーブにアバター画像ファイルをアップロードしています。

コントローラー:

class Api::V1::AvatarsController < ApplicationController
  load_and_authorize_resource :user
  load_and_authorize_resource :avatar, through: :user
  respond_to :json

  def create
    @avatar.active = true
    @avatar.save
    respond_with @avatar, location: nil
  end
end

また、active_model_serializers を使用して json を生成します。

class AvatarSerializer < ApplicationSerializer
  attributes :active
  attributes :image
  attributes :crop_x
  attributes :crop_y
  attributes :crop_w
  attributes :crop_h

  attributes :image_medium_path
  attributes :image_large_path
  attributes :can_manage

  attributes :user_id

  def image_medium_path
    object.image_url :medium
  end

  def image_large_path
    object.image_url :large
  end

  def can_manage
    Ability.new(scope).can?(:manage, object)
  end
end

jquery-file-upload を使用してアバター画像をアップロードした後、次のような応答がありました。

  {"avatar":{
      "id":"51eba3143803f8aa7c000009",
      "active":true,
      *"image":{
        "image":{
          "url":"...",
          "large":{
            "url":"..."
          },
          "medium":{
            "url":"..."
          },
          "small":{
            "url":"..."
          },
          "xsmall":{
            "url":"..."
          },
          "xxsmall":{
            "url":"..."
          }
        }
      },*       "crop_x":0,"crop_y":0,"crop_w":294,"crop_h":294,"image_medium_path":"...","image_large_path":"...","can_manage":true,"user_id":"51e4156a3803f8cde900000b"}}

ご覧のとおり、json の "image" セクションは carriverwave の追加部分です。削除したいです。どうやってするの?ありがとう

4

1 に答える 1