我想在model.Field
基类中添加额外的参数
稍后使用,而无需在Form
或ModelForm
类中再次定义字段的额外选项。
我可以添加额外的参数:
class Poll(models.Model):
question = models.CharField(max_length=200,
extra= { 'widget': 'xw',
'admin_list_order': 3 })
pub_date = models.DateTimeField('date published')
我可以通过以下方式访问额外的arg:
(InteractiveConsole)
>>> from polls.models import Poll
>>> Poll._meta.fields[1].extra
{'widget': 'xw', 'admin_list_order': 3}
>>>
这是添加额外参数的合适的Pythonic方法吗?
from django.db import models
# save old __init__ function of Field class
__oInit = models.Field.__init__
# define a new one to accept 'extra' arg
def __xinit__(self, *args, **kwargs):
#chek if extra arg exist
if kwargs.has_key('extra'):
self.extra = kwargs.pop('extra')
#call real __init__
__oInit(self, *args, **kwargs)
# replace init with new one
models.Field.__init__ = __xinit__
答案 0 :(得分:1)
如果他们向字段添加extra
参数,则可能会中断。一般来说,不鼓励 monkeypatches 。您可以通过向Field
基类添加方法来使用更安全的路径:
def set_extra(self, **kwargs):
self.extra = kwargs
return self
models.Field.set_extra = set_extra
然后像这样定义你的模型:
class Poll(models.Model):
question = models.CharField(max_length=200).set_extra(
widget='xw', admin_list_order=3)
has_key
被视为 unpythonic ,检查密钥存在的首选方式是:
if 'extra' in kwargs:
self.extra = kwargs.pop('extra')
更多 pythonic 只会尝试并捕捉失败:
try:
self.extra = kwargs.pop('extra')
except KeyError:
pass