7

我已经有返回 JSON 响应的 Rails API 控制器。前端 Javascript(以及移动应用程序)使用它来呈现值。

现在,我希望使用 ReactJS 预渲染这些值:

#app/controllers/api/v1/products_controller.rb
module API
    module V1
        class ProductsController < ApplicationController
            def index
                @products = Product.all #this could  be acomplex multi-line statements. 
                #rendered in api/v1/products/index.json.jbuilder
            end
        end
    end
end

#app/controllers/products_controller.rb
class ProductsController < ApplicationController
    def index
        #How to do this efficiently?
        @products_json = #Call to internal /api/v1/products/index for prerender purpose.
        @user_json = #Call to internal /api/v1/user/show for prerender purpose.
    end
end

#app/views/products/index.html.erb
<%= react_component('ProductsList', @products_json, {prerender: true}) %>
<%= react_component('UserProfile', @user_json, {prerender: true}) %>

如何有效地调用内部/api/v1/products/api/v1/userURL(例如,不向我自己的服务器发出 HTTP GET 请求)?

4

2 回答 2

3

我同意您希望为您的视图重用您的 API 代码。这将使应用程序更易于维护。

如果你稍微改变一下范围怎么办?无需调用控制器方法,而是将逻辑移到新的 Ruby 类中。

这个类的工作是将一个对象变成一个 JSON 字符串,所以它被称为“序列化器”。在我的应用程序中,我们app/serializers/{model_name}/用于存储不同的序列化程序类。

这是一个示例序列化程序:

# app/serializers/product/api_serializer.rb
class Product::APISerializer 
  attr_reader :product, :current_user 

  def initialize(product, current_user)
    @product = product 
    @current_user = current_user
  end 

  # Return a hash representation for your object
  def as_json(options={}) # Rails uses this API
    {
      name: product.name,
      description: product.description,
      price: localized_price,
      categories: product.categories.map { |c| serialize_category(c) },
      # ... all your JSON values
    }
  end 

  private 

  # For example, you can put logic in private methods of this class.
  def localized_price 
    current_currency = current_user.currency
    product.price.convert_to(current_currency)
  end 

  def serialize_category(category)
    { name: category.name }
  end
end

然后,使用此序列化程序构建您的 API 响应:

class API::V1::ProductsController < ApplicationController 
  def index 
    products = Product.all 
    products_json = products.map do |product|
      serializer = Product::APISerializer.new(product, current_user)
      serializer.as_json
    end 
    render json: products_json
  end
end

然后,您可以在 UI 控制器中再次使用序列化程序:

class ProductsController < ApplicationController 
  def index 
    products = Product.all 
    @products_json = products.map do |product|
      serializer = Product::APISerializer.new(product, current_user)
      serializer.as_json
    end 
    # render view ... 
  end
end

因为您在两种情况下都使用了相同的序列化程序,所以产品的 JSON 表示将是相同的!

这种方法有几个优点:

  • 因为你的序列化器是一个普通的 Ruby 类,所以很容易编写和测试
  • 在控制器之间共享 JSON 逻辑很容易
  • 它非常可扩展:当您需要 JSON 用于不同目的时,只需添加一个新的序列化程序并使用它。

有些人为此使用ActiveModel 序列化程序,但我没有。一年前我尝试了 AMS,但我不喜欢它,因为它覆盖as_json了您应用程序中的所有对象,这导致了我的情况发生了重大变化!

于 2015-10-07T03:39:20.127 回答
1

尝试这个:

def index
  @products = Product.all
  @products_json render_to_string('/api/v1/products/index', formats: [:json])
  # etc...
end
于 2015-09-29T12:01:19.143 回答