Rails 5とActiveJobを使用してバックグラウンドタスクを処理しています。as_json
でシリアル化されたオブジェクトをジョブに渡そうとしていますが、次のエラーが発生します:
ActiveJob::SerializationError (Unsupported argument type: Time):
ActiveJob::SerializationError (Unsupported argument type: DateTime):
ActiveJobがTime/DateTimeオブジェクトを取得しないことを理解しています。これは、いくつかのキューシステムがこれらのタイプを処理しないためです。したがって、シリアル化しようとしているオブジェクトは次のとおりです。
card = Card.first
=> #<Card id: 256, title: "quis", description: "Sunt corporis error laudantium veritatis impedit r...", due_date: "2016-12-15 12:00:00", slug: "quis", created_at: "2016-11-30 17:00:01", updated_at: "2016-11-30 17:00:01", list_id: 26, position: 0, period_type: "hours", period_length: 0.0, user_id: 1>
私が走ると:
card.as_json
=> {"id"=>256, "title"=>"quis", "description"=>"Sunt corporis error laudantium veritatis impedit repellat quasi.", "due_date"=>Wed, 15 Dec 2016 12:00:00 UTC +00:00, "slug"=>"quis", "created_at"=>Wed, 30 Nov 2016 17:00:01 UTC +00:00, "updated_at"=>Wed, 30 Nov 2016 17:00:01 UTC +00:00, "list_id"=>26, "position"=>0, "period_type"=>"hours", "period_length"=>0.0, "user_id"=>1}
Created_at、updated_at、due_dateはすべてActiveSupport::TimeWithZone
のインスタンスです
別のSOポストで見つけたイニシャライザで次のコードを使用してこれをオーバーライドしようとしましたが、それは役に立ちません:
class ActiveSupport::TimeWithZone
def as_json(options = {})
strftime('%Y-%m-%d %H:%M:%S')
end
end
as_json
がオブジェクトで実行されるときに、日付を文字列として持つことを誰かが手伝ってくれるでしょうか?
代わりにcard.to_json
を使用してください。ジョブが受け入れることができるJSON文字列を返します。
as_json
で使用するロジックがある場合は、to_json
への呼び出しの最後にas_json
をチェーンするだけです。つまり、card.as_json.to_json
です。