gpt4 book ai didi

html - 下载子域的属性和 Firefox

转载 作者:太空宇宙 更新时间:2023-11-04 13:19:54 25 4
gpt4 key购买 nike

我正在使用 anchor 标记的下载属性从子域下载二进制文件。

<!-- The hosting page is at http://foo.example.com/my-page.html -->
<div>
<a href="http://bar.example.com/files/a/file.bin" download="1234.bin">Download</a>
</div>

这在 Chrome 30 中运行良好。但是,在 Firefox 24 中,系统提示我使用 file.bin 文件名而不是 1234.bin 中指定的文件名进行保存下载属性。我读过 MDN documentation that the links must be same-origin .这对子域来说是不可能的吗?

最佳答案

不,如前所述,您需要指定来源。您可以在 bar.example.com 的标题中添加:

Access-Control-Allow-Origin: http://foo.example.com

您可以选择添加

Access-Control-Allow-Origin: *

对于所有人。但要注意安全。

这表示允许 foo.example.com 处理 ajax 请求的浏览器

关于html - 下载子域的属性和 Firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19389585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com