Web 服务文件:Firefox 截断名称

发布于 2024-09-02 08:38:30 字数 199 浏览 7 评论 0原文

我正在从 Lighttpd 提供一个文件,其名称包含空格字符。我正在使用 mimetype“application/octet-stream”

当我在 Chrome 中下载它时,它工作得很好。但是当我在 Firefox 中下载时,文件名在第一个空格处被截断。

这与 mimetype 有关吗?还有其他一些轻量级的配置吗?或者也许与我使用的空格字符有关?

I'm serving a file from Lighttpd whose name contains space-characters. I'm using mimetype "application/octet-stream"

When I download this in Chrome, it works perfectly. But when I download in Firefox, the filename is truncated at the first space.

Is this to do with the mimetype? With some other lightty config? Or maybe something to do with the kind of space-character I'm using?

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

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

发布评论

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

评论(1

忘羡 2024-09-09 08:38:30

您需要对链接进行 urlencode。 URL 中的空格很容易被误解。

space 的 url 代码是 %20 或者您也可以使用 +

So

http://example.com/test file.jpg

You would use:
http://example.com/test%20file.jpg
or
http://example.com/test+file.jpg

我不喜欢使用带空格的文件名。

You need to urlencode your links. Spaces are easily misunderstood in URLS.

The url code for space is %20 or you can also use +

So for

http://example.com/test file.jpg

You would use:
http://example.com/test%20file.jpg
or
http://example.com/test+file.jpg

I prefer to not use filenames with spaces in them.

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