Javascript:从浏览器端数据组成的文件中下载文件选项

发布于 2024-12-08 05:07:18 字数 143 浏览 0 评论 0原文

当我进行 JSON 调用时,我获取文件的内容。 我想要的是,当按下按钮时,该内容应该可以作为文件下载给用户。

所以它就像从 Web UI、浏览器端一样,

我的代码触发一个 JSON 请求,我得到一些数据作为回复。 该数据应该可以作为文件下载

When i do a JSON call , i get contents of a file.
What i want is that , when pressed a button , this content should be downloadable as a file to the user.

So its like from web UI , browser side ,

my code fires a JSON request and i get some data as reply.
This data should be down-loadable as a file

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

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

发布评论

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

评论(1

相思故 2024-12-15 05:07:18

您需要在响应中发送以下 http 标头,以告诉浏览器进行下载:

Content-Disposition: attachment; filename="download.json"

当然,当从 Javascript 进行 JSON 调用来评估响应时,您不需要该标头。最简单的方法可能是检查X-Requested-With。如果已设置,则可能是 JavaScript 发出的请求。

You will need to send the the following http header in the response to tell the browser to download:

Content-Disposition: attachment; filename="download.json"

Of course when making a JSON call from Javascript to evaluate the response you won't need that header. The easiest way is probably to check for the X-Requested-With. If it is set it is probably a request made by JavaScript.

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