码迷,mamicode.com
首页 > 其他好文 > 详细

video文件转blob

时间:2019-11-21 16:50:09      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:文件   this   jscript   send   status   方式   blob   type   function   

//创建 XMLHttpRequest 对象 
 var xhr = new XMLHttpRequest(); 
 //配置请求方式、请求地址以及是否同步 
 xhr.open(‘POST‘, ‘./play‘, true); 
 //设置请求结果类型为 blob xhr.responseType = ‘blob‘; 
 //请求成功回调函数 
 xhr.onload = function(e) {     
 if (this.status == 200) {
 //请求成功         
 //获取 blob 对象         
 var blob = this.response;         
 //获取 blob 对象地址,并把值赋给容器         
 $("#sound").attr("src", URL.createObjectURL(blob));}}; 
 xhr.send();

video文件转blob

标签:文件   this   jscript   send   status   方式   blob   type   function   

原文地址:https://www.cnblogs.com/yishenweilv/p/11906391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!