I have a Rant
model with Category
linked to it using ManyToManyField
. I've serialized it but the problem is this error:
{
"categories": [
"Expected a list of items but got type \"str\"."
]
}
These are my serializers:
class CategorySerializer(serializers.ModelSerializer)
class Meta:
model = Category
fields = "__all__"
…
Top comments (2)
Checkout my answer to your issue here
Got it man! Thank you! It worked!