ActiveModel::Serializer::CollectionSerializer::NoSerializerError in active_model_serializer 0.10.0.rc5
问题 I'm using active_model_serializer 0.10.0.rc5 and grape gem for the api. I've a post endpoint like this : class V1::Endpoints::Posts < Grape::API resource :posts do desc 'Returns a list of posts.' # serializing array get '', each_serializer: V1::Serializers::PostSerializer do @posts = Post.all present @posts end end end My serializer looks something like this : class V1::Serializers::PostSerializer < ActiveModel::Serializer attributes :id, :name, :slug end Now when I try to access the post