Rails 6 fastjson错误MandatoryField异常:id是jsonapi规范中的必填字段

问题描述

我正在使用Fastjson序列化程序gem开发Rails 6 API。

遇到了MandatoryField异常:id是jsonapi规范错误中的必填字段

def get_payment_report
 if params[:duration].present?
   payment = Hash.new
   date_range = Invoice.get_date_range(params[:duration],DateTime.Now.in_time_zone(@timezone))
   invoiced_amount = Invoice.invoiced_report_calculation(params[:duration],date_range) if date_range.present?
   payment['invoiced_amount'] = invoiced_amount[0]
   payment['total_invoiced_amount'] = invoiced_amount[1]
   payment_report = DashboardPaymentReportSerializer.new(payment)
   success_response_with_obj(payment_report.serializable_hash[:data].map{ |data| data[:attributes]})  
  end
 end

payment_report对象值

#<DashboardPaymentReportSerializer:0x00007fee1caefb48 @fieldsets={},@params={},@resource={"invoiced_amount"=>{"Jan 2020"=>0.14267609e6,"Feb 2020"=>0.1081994e6,"Mar 2020"=>0.8739835e5,"Apr 2020"=>0.839002e4,"May 2020"=>0.12127e5,"Jun 2020"=>0.4563784e5,"Jul 2020"=>0.332564e4,"Aug 2020"=>0.330587796e7,"Sep 2020"=>0.68637564e6,"Oct 2020"=>0.6382326e6,"Nov 2020"=>0.285e3,"Dec 2020"=>0},"total_invoiced_amount"=>24694915}>

序列化器代码

class DashboardPaymentReportSerializer
  include FastJsonapi::ObjectSerializer
  attributes :invoiced_amount,:total_invoiced_amount 
end

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...