1

我在我的 Django 表单上使用clean_fieldname方法:

def clean_recipients(self):
    data = self.cleaned_data['recipients']
    ...

Django 不能简单地提供这个值作为参数有什么原因吗?

def clean_recipients(self, data):
    ...

(我正在考虑编写一个包装器,可以按照我想要的方式进行操作,因为我正在清理许多字段,并且每次输入该行都会变得有点重复。)

4

0 回答 0