如何使用jquery post提交处理图像上传

发布于 2024-11-19 04:13:06 字数 224 浏览 4 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白昼 2024-11-26 04:13:06

您无法使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文