如何使用jquery post提交处理图像上传
我有 html 表单,我正在使用 jquery 提交表单,
var queryString = $('.form1').formSerialize();
$.post('book/create/', queryString);
但如果我不使用 ajax 提交表单,那么图像将由 django 函数上传
现在问题是,它忽略了文件字段。我应该怎么办
I have the html form and i am submittng the form with jquery with following
var queryString = $('.form1').formSerialize();
$.post('book/create/', queryString);
But if i submit form without ajax then image gets uploaded by django function
Now the problem is , it is ignoring the file fields. what should i do
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 XMLHttpRequest (AJAX) 上传文件。但是您可以尝试使用一些 Ajax JQuery 插件来上传文件
另外检查如何-can-i-upload-files-asynchronously-with-jquery
You cannot upload files using XMLHttpRequest (AJAX).But you can try using some of the Ajax JQuery plugins to upload files
Also Check how-can-i-upload-files-asynchronously-with-jquery