gpt4 book ai didi

javascript - 有没有办法强制 XMLHttpRequest 使用 HTTP/1.1?

转载 作者:行者123 更新时间:2023-12-02 23:27:26 26 4
gpt4 key购买 nike

我有一个支持 HTTP/1.1 和 HTTP2 的服务器端点。出于测试目的,我想尝试使用 HTTP/1.1 和 HTTP2 连接从端点下载内容,可能同时进行。

当我使用 XMLHttpRequest 从端点请求数据时,它会自动使用 HTTP2,而无需包含 Connection: Upgrade header 。

有没有办法强制 XMLHttpRequest 使用 HTTP/1.1 作为底层 TCP 连接?其他协议(protocol)(例如 Quic 或 SPDY)怎么样?

最佳答案

没有。

来自 Remy Lebeau 的评论:

The browser decides which protocol it wants to use as an implementation detail of the XmlHttpRequest object. You can't force a particular choice from inside your script.

关于javascript - 有没有办法强制 XMLHttpRequest 使用 HTTP/1.1?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56675358/

26 4 0