我有一个控制器,用于构建哈希数组,如下所示:
product_controller.rb
class ProductController < ApplicationController
def product
existing_products = Product.where(abc, deb)
existing_products = mapped_existing_products(existing_products)
some_other_method(existing_products)
render status: :ok,
json: { existingProducts: existing_products }
end
private
def mapped_existing_products(existing_products)
product_mapping = []
existing_products.each do |product|
product_mapping << {
product_id: product.id,
order_id: activity.product_order_id
}
end
product_mapping
end
end
我对ruby还是陌生的,但是从我读到的内容来看,我必须创建一个序列化器,但是序列化器用于模型,并且我没有用于产品的序列化器,因为我正在渲染具有新属性的哈希。
我试图创建如下的序列化器
class ProductMappingSerializer < ActiveModel::Serializer
attributes :product_id, :order_id
end
并在控制器中
render json: existing_products,
serializer: ProductMappingSerializer,
status: :ok
结束
但是当我测试它时会出现错误
undefined method `read_attribute_for_serialization' for #<Array:0x00007fa28d44dd60>
我如何在渲染的json中序列化哈希的属性?
答案 0 :(得分:0)
在Rails之外,序列化Ruby对象的一种方法是使用Marshal
# make array of hash
irb> a_of_h = [{}, {:a => 'a'}]
=> [{}, {:a=>"a"}]
# serialize it
irb> dump = Marshal.dump(a_of_h)
=> "\x04\b[\a{\x00{\x06:\x06aI\"\x06a\x06:\x06ET"
# bring it back
irb> back = Marshal.load(dump)
=> [{}, {:a=>"a"}]
# check that it happened
irb> back
=> [{}, {:a=>"a"}]
这可能会或可能不会满足您的应用程序需求。
另一种方法是使用JSON
irb> require 'json'
=> true
irb> j = JSON.dump(a_of_h)
=> "[{},{\"a\":\"a\"}]"
还有YAML
irb> require 'yaml'
=> true
irb> YAML.dump(a_of_h)
=> "---\n- {}\n- :a: a\n"