django中提交form表单时防止scrf(跨站请求)问题
2018-11-24 本文已影响0人
山坡上的斐德洛
在form表单中加入{% csrf_token %}
即可,如:
<form action="" method="post" enctype="multipart/form-data">
{% csrf_token %}
<input type="file" name="use_head_photo" class="btn btn-default" >
<input type="submit"class="btn btn-default" value="提交" name="submit_user_photo">
</form>