1
按DRF文件DRF ValidatorsDjango的REST框架 - 傳遞附加參數validate_foo
我的方法應該是這樣
def validate_title(self, value):
"""
Check that the blog post is about Django.
"""
if 'django' not in value.lower():
raise serializers.ValidationError("Blog post is not about Django")
return value
我想一個額外的參數傳遞給validate_title
,所以它應該看起來像
這裏id是我想調用序列化程序時要傳遞的一些值。
def validate_title(self, value, id):
"""
Check that the blog post is about Django.
"""
# Use <id> here
if 'django' not in value.lower():
raise serializers.ValidationError("Blog post is not about Django")
return value
我不能理解如何實現這個,有什麼幫助嗎?
ID值從哪裏來? –
@DanielRoseman更新。 – ofnowhere
仍然不夠清楚,無法獲得幫助 – Linovia