gpt4 book ai didi

jQuery ajax 无法使用 'blob' 数据类型

转载 作者:行者123 更新时间:2023-12-01 05:49:41 25 4
gpt4 key购买 nike

我正在尝试使用 jQuery ajax 附加到媒体源缓冲区。

以下内容始终会导致错误

 $.ajax({url: 'streaminit.mp4', dataType: 'blob', async: false,
error: function() {
console.log('error');
}}).done(function(frag) {
sourceBuffer.appendBuffer(new Uint8Array(frag));
console.log(new Uint8Array(frag));
});

如果我将 dataType 设置为 text,则该请求有效,但在附加源时会失败。我猜是因为类型错误。

最佳答案

您需要将数组类型传递给 Uint8Array 才能正常工作。尝试返回 JSON,例如:

{ 'data': [] }

关于jQuery ajax 无法使用 'blob' 数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23503693/

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