通过保存对话框形式将 php 脚本生成的文件保存到目录中
我有一个生成 pdf 文件的 php 脚本。 所以我有一个带有 jquery javascript 的 html 页面,它在此 php 脚本中执行 ajax 调用并检索 pdf 文件内容。 我希望该文件将保存在保存文件对话框选择的位置。
我该怎么做呢?
太感谢了。
I have a php script that generate a pdf file.
So I have an html page with jquery javascript that do an ajax call at this php script and retrieve the pdf file content.
I would that this file will be saved in a location choosed by a save file dialog.
How can I do it?
Thank you so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 Ajax - 只需执行一个
(或者让用户单击链接),如果标头设置正确,就会出现一个下载对话框。
You don't need Ajax - just do a
(or alternatively, have the user click on a link) and if the headers are set correctly, a download dialog will present itself.