jQuery ajax 调用 httphandler 返回 zip 文件

发布于 2024-09-18 05:17:53 字数 188 浏览 9 评论 0原文

我有一个 httphandler,它创建一个 zip 文件并将其返回以供下载。

context.Response.AppendHeader("内容处置", "附件; filename=myfile.zip");

是否可以从 jquery ajax 调用中调用处理程序? 如果是,我应该声明什么样的数据类型?

谢谢

I have an httphandler that creates a zip file and returns it for download.

context.Response.AppendHeader("content-disposition", "attachment; filename=myfile.zip");

Is it possible to call the handler from a jquery ajax call?
If yes, what kind of dataType should I declare?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浮华 2024-09-25 05:17:53

我在这里建议不要通过 Ajax 返回 ZIP 文件,而是创建它并返回它的链接(或错误消息)。然后,您可以处理响应并显示错误或允许用户从链接下载。

What I would suggest here is not to return the ZIP file through Ajax, but create it and return a link to it (or the error message). Then you can process the response and either show the error or allow the user to download from the link.

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