我创建了一个包含用户详细信息的表单,并编写了一个类视图来更新我的django aapp中的用户详细信息,一切正常,但是我不是在通过该表单在页面中手动编码表单的表单小部件,而是在更新细节。我不明白如何将表单错误从类视图重定向到有错误的表单页面,在Django错误中,这表明不包含aapp / user_form.html模板。
<div class="row">
<div class="col-md-12">
<form action="{% url 'updatedprofile' user.id %}" method="post">
{% csrf_token %}
<div class="modalBox">
<div class="row">
<div class="col-md-11">
<h4>Update Profile</h4>
</div>
<div class="col-md-1 icon">
<p><a href="{% url 'mprofile' %}"><i class="fas fa-times"></i></a></p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<thead>
<tr>
<td>First Name:</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="text" name="first_name" value="{{user.first_name}}" class="form-control no-border simplebox" placeholder="Enter Your First Name Here...">
</td>
</tr>
</tbody>
<thead>
<tr>
<td>Last Name:</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="text" name="last_name" value="{{user.last_name}}" class="form-control no-border simplebox" placeholder="Enter Your Last Name Here...">
</td>
</tr>
</tbody>
</table>
<table class="table table-striped">
<thead>
<tr>
<td>Mobile: </td>
</tr>
</thead>
<tbody>
<tr>
<td><input type="number" name="mobile" value="{{user.mobile}}" class="form-control no-border simplebox" placeholder="Enter Mobile Number Here..."></td>
</tr>
</tbody>
</table>
<table class="table table-striped">
<thead>
<tr>
<td>Profile Pic: </td>
</tr>
</thead>
<tbody>
<tr>
<td><input type="file" name="avatar" value="{{user.avatar}}" class="form-control no-border simplebox"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<center><button type="submit" class="btn btn-success">Add Services</button></center>
</form>
</div>
</div>
class UpdateMprofile(LoginRequiredMixin, LogoutIfNotSuperuserMixin, UpdateView):
login_url = reverse_lazy('mlogin')
model = User
fields = ['first_name', 'last_name', 'mobile', 'avatar']
success_url = reverse_lazy('mprofile')
答案 0 :(得分:0)
正如我所看到的,您没有在视图中定义template_name
,因此您将收到模板错误。首先解决此问题-
class UpdateMprofile(LoginRequiredMixin, LogoutIfNotSuperuserMixin, UpdateView):
template_name = aapp/profile.html #Template directory should be correct.
login_url = reverse_lazy('mlogin')
model = User
fields = ['first_name', 'last_name', 'mobile', 'avatar']
success_url = reverse_lazy('mprofile')
Django已经解决了这些错误,但是在您的模板中,您并未对其进行编码以显示错误。
要一次显示所有错误-
{% for error in form.non_field_errors %}
{{error}}
{% endfor %}
,或者如果您想在其字段中显示错误,请使用此-
{% for error in form.first_name.errors %}
<span class="help-block text-danger">{{ error }}</span>
{% endfor %}
针对表单使用的另一项建议-Widget Tweaks
,很好tutorial。
答案 1 :(得分:0)
使用通用视图时,应遵循Django模板命名。
在您的问题中,您收到模板错误,因此您应该添加带有_form
后缀的模板,例如yourmodelname_form.html
。 Django会自动在您的模板文件夹Refer Official Document Here
验证错误可以显示在
{{form.non_field_errors}}
注意:最好使用forms.py进行编辑。