RecorderJS通过AJAX上传记录的Blob

RecorderJS通过AJAX上传记录的Blob,第1张

RecorderJS通过AJAX上传记录的Blob

如果您有Blob,则需要将其转换为网址,然后通过ajax调用运行该网址。

// might be nice to set up a boolean somewhere if you have a handler objectobject = new Object();object.sendToServer = true;// You can create a callback and set it in the config object.var config = {   callback : myCallback}// in the callback, send the blob to the server if you set the property to truefunction myCallback(blob){   if( object.sendToServer ){     // create an object url     // Matt actually uses this line when he creates Recorder.forceDownload()     var url = (window.URL || window.webkitURL).createObjectURL(blob);     // create a new request and send it via the objectUrl     var request = new XMLHttpRequest();     request.open("GET", url, true);     request.responseType = "blob";     request.onload = function(){       // send the blob somewhere else or handle it here       // use request.response     }     request.send();   }}// very important! run the following exportWAV method to trigger the callbackrec.exportWAV();

让我知道这是否有效..尚未测试,但应该可以工作。干杯!



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5128188.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存