Javascript:从浏览器端数据组成的文件中下载文件选项
当我进行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在响应中发送以下 http 标头,以告诉浏览器进行下载:
当然,当从 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:
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.