所以我想使用这个getattribute函数(在这个链接上找到)https://snipt.net/Fotinakis/django-template-tag-for-dynamic-attribute-lookups/
在我的 Django 模板中。我在我的 models.py 所在的 app 文件夹中创建了一个 templatetags 文件夹。我还在 templatetags 文件夹中创建并保存了一个空的inint .py 文件。然后,我在模板标签文件夹中创建了一个名为 getattribute.py 的文件,并将上面链接中的代码段复制粘贴到 getattribute.py 文件中并保存该文件。
这是我的模板的样子:
<html>
<body>
<form method="post" action="">{% csrf_token %}
{{ form.first_name }} {{form.last_name }} <br>
{{ form.username }} {{ form.password }} <br>
<input type="submit" value="Register"/>
</form>
{% load getattribute %}
{% for field, error in form.errors.items %}
{% if forloop.counter == 1 %}
{% with field_obj=form|getattribute:field %}
{{ field_obj.label }}{{ error | striptags }}
{% endwith %}
{% endif %}
{% endfor %}
</body>
</html>
这就是我的 models.py 的样子。
class Users(models.Model):
alpha_field = RegexValidator(regex=r'^[a-zA-Z]+$', message='Name can only contain letters')
user_id = models.AutoField(unique=True, primary_key=True)
username = models.SlugField(max_length=50, unique=True)
first_name = models.CharField(max_length=50, verbose_name='first Name', validators=[alpha_field])
last_name = models.CharField(max_length=50, validators=[alpha_field])
password = models.SlugField(max_length=50)
我的 forms.py 就是这个。
class UsersForm(forms.ModelForm):
class Meta:
model = Users
widgets = {'password':forms.PasswordInput()}
def __init__(self, *args, **kwargs):
super( UsersForm, self ).__init__(*args, **kwargs)
self.fields[ 'username' ].widget.attrs[ 'placeholder' ]="Username"
self.fields[ 'first_name' ].widget.attrs[ 'placeholder' ]="First Name"
self.fields[ 'last_name' ].widget.attrs[ 'placeholder' ]="Last Name"
self.fields[ 'password' ].widget.attrs[ 'placeholder' ]="Password"
self.fields['first_name'].label='first Name'
这是我的views.py
def home_page(request):
form = UsersForm()
if request.method == "POST":
form = UsersForm(request.POST)
if form.is_valid():
form.save()
c = {}
c.update(csrf(request))
c.update({'form':form})
return render_to_response('home_page.html', c)
现在,当我运行服务器时,表单显示没有错误。但是,如果我故意不填写名字部分并点击提交,它会显示“此字段是必需的”。如果在我的模板中使用 {{ field_obj.label }},我希望它说出详细名称,并且片段应该让它说出详细名称,对吗?但由于某种原因,它不显示详细名称。我猜这是因为我没有正确使用模板标签?