DjangoRESTFrameworkを使用する次のシリアライザーがあります。
これは私がこれまでに持っているものです...
serializer.py
class ProductSerializer(serializers.ModelSerializer):
score = serializers.SerializerMethodField('get_this_score')
class Meta:
model = Product
fields = ('id', 'title', 'active', 'score')
def get_this_score(self, obj):
profile = Profile.objects.get(pk=19)
score = [val for val in obj.attribute_answers.all() if val in profile.attribute_answers.all()]
return (len(score))
urls.py
url(r'^products/(?P<profile_id>.+)/$', ProductListScore.as_view(), name='product-list-score'),
このコードスニペットにはいくつかの問題があります。
1)pram pk = 19はハードコーディングされているので、試してみたはずですがself.kwargs['profile_id'].
、kwargをメソッドに渡す方法がわからず、profile_idを機能させることができません。つまり、URLから取得できません。
2)このコードのいずれかをモデルに含める必要がありますか?モデルに追加しようとしましたが、引数を渡すことができます。
models.py すなわちメソッドクラス
def get_score(self, profile):
score = [val for val in self.attribute_answers.all() if val in
profile.attribute_answers.all()]
return len(score)