How to render a jsonapi-resources response in an custom controller action?

我们两清 提交于 2019-12-21 20:36:32

问题


I have implemented my own object creation logic by overriding the create action in a JSONAPI::ResourceController controller.

After successful creation, I want to show the created object representation.

How to render this automatically generated JSON API response, using the jsonapi-resources gem?

Calling the super method does also trigger the default resource creation logic, so this does not work out for me.

class Api::V1::TransactionsController < JSONAPI::ResourceController
  def create
    @transaction = Transaction.create_from_api_request(request.headers, params)

    # render automatic generated JSON API response (object representation)
  end
end

回答1:


You could do something like this:

class UsersController < JSONAPI::ResourceController
  def create
    user = create_user_from(request_params)

    render json: serialize_user(user)
  end

  def serialize_user(user)
    JSONAPI::ResourceSerializer
            .new(UserResource)
            .serialize_to_hash(UserResource.new(user, nil))
  end
end

this way you will get a json response that is compliant with Jsonapi standards




回答2:


render json: JSON.pretty_generate( JSON.parse @transaction )



回答3:


def render_json
  result =
    begin
      block_given? ? { success: true, data: yield } : { success: true }
    rescue => e
      json_error_response(e)
    end

  render json: result.to_json
end

def json_error_response(e)
  Rails.logger.error(e.message)

  response = { success: false, errors: e.message }

  render json: response.to_json
end

render_json { values }


来源:https://stackoverflow.com/questions/47132012/how-to-render-a-jsonapi-resources-response-in-an-custom-controller-action

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!