用于视频标签的 XMLHttpRequest?
有人尝试过使用 XHR 请求中的二进制数据作为视频文件的内容吗?
Has anyone tried using binary data from an XHR request to be the content of a video file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在支持 Blob 的浏览器中,您可以执行以下操作并使用生成,假设
req
是一个new XMLHttpRequest
:请参阅 适用于 Google Chrome 的此解决方法,直到
responseType = "blob"< /code> 已实施。
In
Blob
-supporting browsers, you can do the following and use a generate, givenreq
is anew XMLHttpRequest
:Refer to this workaround for Google Chrome until
responseType = "blob"
is implemented.