def __call__(self, value):
if len(value) > self.limit:
raise serializers.ValidationError(
"Cannot add more than {} {}!".format(self.limit, self.things)
)
##########################################################################
## Serializers
##########################################################################
评论列表
文章目录