'WSGIRequest' 对象没有属性 'Post'
'WSGIRequest' object has no attribute 'Post'
我是 django 和 python 的新手,我正在尝试从 html 页面中的复选框更新数据库布尔字段。
当我尝试访问视图方法中的复选框时,出现此错误:'WSGIRequest' object has no attribute 'Post'
这是我在 HTML 中的代码:
<body>
{% if all_crosses %}
<form action= 'lines/inventory/' method="POST">
{%csrf_token%}
<input type="submit" value="Submit" />
{% for cross in all_crosses %}
<table style="margin-bottom: 20px">
<!-- Checkbox + Name -->
<tr>
<td>
{% if cross.exists %}
<input type="checkbox" value="{{ cross.id }}" name="exist" id="exist{{ forloop.counter }}" checked >
{% else %}
<input type="checkbox" value="{{ cross.id }}" name="exist" id="exist{{ forloop.counter }}" >
{% endif %}
</td>
<td>
<li>Cross Name: {{cross.Name}}</li>
</td>
</tr>
</table>
{% endfor %}
</form>
{% endif %}
</body>
这是视图中的代码:
def update_existence(request):
all_crosses = RaisingStatus.objects.all()
if request.method == "POST":
if ('exist' in request.POST):
print('Post')
checks = request.Post['exist']
# My desired processing here
return render(request, 'lines/inventory.html', {'all_crosses' : all_crosses})
我也试了 request.Post.getlist() 也报了同样的错误
是不是打错了...应该是request.POST
我是 django 和 python 的新手,我正在尝试从 html 页面中的复选框更新数据库布尔字段。 当我尝试访问视图方法中的复选框时,出现此错误:'WSGIRequest' object has no attribute 'Post'
这是我在 HTML 中的代码:
<body>
{% if all_crosses %}
<form action= 'lines/inventory/' method="POST">
{%csrf_token%}
<input type="submit" value="Submit" />
{% for cross in all_crosses %}
<table style="margin-bottom: 20px">
<!-- Checkbox + Name -->
<tr>
<td>
{% if cross.exists %}
<input type="checkbox" value="{{ cross.id }}" name="exist" id="exist{{ forloop.counter }}" checked >
{% else %}
<input type="checkbox" value="{{ cross.id }}" name="exist" id="exist{{ forloop.counter }}" >
{% endif %}
</td>
<td>
<li>Cross Name: {{cross.Name}}</li>
</td>
</tr>
</table>
{% endfor %}
</form>
{% endif %}
</body>
这是视图中的代码:
def update_existence(request):
all_crosses = RaisingStatus.objects.all()
if request.method == "POST":
if ('exist' in request.POST):
print('Post')
checks = request.Post['exist']
# My desired processing here
return render(request, 'lines/inventory.html', {'all_crosses' : all_crosses})
我也试了 request.Post.getlist() 也报了同样的错误
是不是打错了...应该是request.POST