{% csrf_token %}用户名
</div>
<div class="form-group">
<label class="form-label" for="form2Example2">Password</label>
<input type="password" id="form2Example2" class="form-control" name="password" required/>
</div>
<button type="button" class="btn btn-primary btn-block mb-4">Sign in</button>
我试着在post方法中发布像email id和密码这样的数据,但是它是通过get方法发送的。我想可能是bootstrap有问题。你能告诉我在post数据方法的bootstrap中要做什么修改吗?
谢谢
2条答案
按热度按时间laik7k3q1#
如果你想发送它作为后,然后使用按钮类型:
"submit"
。如果没有form
部分,您可能还需要它。如下所示:hvvq6cgz2#
您需要使用{% csrf_token %}和提交按钮添加
method = "POST"