またはクラス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')
次の方法で追加の引数にアクセスできます。
(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__