我使用ajax在特定的div部分写入数据,现在我想将此数据发布到views.py中,但它返回None。当我像<input type='checkbox' id='filesid' name = 'filesname' value='abc'>
abc这样手动编写时。它返回值。 jQuery也可以正常工作。
html代码
html_code = "<input type='checkbox' id='filesid' name = 'filesname' value='"+i+"'>"+i+"<br>"
$('#runtime-div').html(html_code);
使用表单的另一个html页面
<form action = '/home/update_file/' id="UpdateDataFiles" method="post" enctype="multipart/form-data" onsubmit="return myUpdateFile()">
{% csrf_token %}
<div id='runtime-div' class="card-body">
</div>
</form>
views.py
filename = request.POST.get('filesname')
print(filename)