有个需求 需要获得BLOB类型的amr音频 然后通js解码播放 但是请求不到数据 显示302 found
代码如下
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'blob';
xhr.onload = function() {
callback(this.response);
};
xhr.onerror = function(data) {
console.log(data);
alert('Failed to fetch ' + url);
};
xhr.send();
http请求
控制台报错
找到解决方法了 七牛的文档
添加?attname=参数为下载资源