FeedController返回一個包含這些類的對象的數組:Product,Kit和Article。用於數組中不同類的active_model_serializers
是否有可能以及active_model_serializers如何將productSerializer應用於Product,KitSerializer for Kit和ArticleSerializer for Article?
這應該呈現這樣的事情:
[
{ "type": "product", other fiels of Product },
{ "type": "kit", other fiels of Kit },
{ "type": "article", other fiels of Article }
]
幾乎聽起來像這應該工作的開箱。你現在得到的結果是什麼? – spier
我甚至無法啓動它,因爲each_serializer只有一個類... anoway,jbuilder看起來更好。 –