gpt4 book ai didi

javascript - 使用 AJAX 仅从文件中检索特定字节范围

转载 作者:行者123 更新时间:2023-11-30 12:17:03 24 4
gpt4 key购买 nike

这可能吗?我认为只要服务器支持恢复(HTTP 范围)就应该如此。

最佳答案

使用XMLHttpRequest.prototype.setRequestHeader()设置 RANGE 请求 header :

//Our AJAX object:
var req = new XMLHttpRequest();
req.open([REQUEST METHOD], [REQUEST URI], true);
//Set the RANGE header here:
req.setRequestHeader("RANGE", "value-of-RANGE-header");
// [Here, set anything else you need before sending the request, like onstatechange]
//Now, send!
req.send();

关于javascript - 使用 AJAX 仅从文件中检索特定字节范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32161509/

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