私はユーザーから特定の詳細を取得しているフォームを作成しようとしています。Djangoエラー:TypeError:__init __()に予期しないキーワード引数 'attrs'があります
私はforms.py
内のフィールドを定義していると私もジャンゴwidget
システムを使用してプレースホルダとCSSクラスのような他の属性を定義しています。しかし、それは私にTypeError
を示している。続いて
TypeError: __init__() got an unexpected keyword argument 'attrs'
は私のコードです:私は「
models.py
from django.db import models
class Contact(models.Model):
your_name = models.CharField(max_length=100)
your_email = models.EmailField()
your_subject = models.CharField(max_length=100)
your_comment = models.TextField(max_length=200)
def __str__(self):
return self.name
forms.py
from django.forms import ModelForm, TextInput, TextInput, EmailField
from .models import Contact
class ContactForm(ModelForm):
class Meta:
model = Contact
fields = ('your_name', 'your_email', 'your_subject', 'your_comment')
widgets = {
'your_name' : TextInput(attrs={'placeholder': 'Name *', 'class': 'form-control'}),
'your_email' : EmailField(attrs={'placeholder': 'Email *', 'class': 'form-control'}),
'your_subject' : TextInput(attrs={'placeholder': 'Subject *', 'class': 'form-control'}),
'your_comment' : Textarea(attrs={'placeholder': 'Comment *', 'class': 'form-control'}),
}
読んでDjango docs for Overriding default fieldsとこの質問init() got an unexpected keyword argument 'attrs'でもエラーを修正することはできません。
私はPythonとDjangoにはかなり新しく、助けていただければ幸いです。ありがとうございます。
を。 –
はい、それは問題です。 EmailFieldはウィジェットを取る 'Field'です。ウィジェットとして設定することはできません。 – Pythonista