我有.wav文件,放在“http://yy.zz/1.wav”。如何在客户端javascript上使用base64编码获取它?
getFile('http://yy.zz/1.wav', (file) => {
console.log(getBase64File(file)); // profit
});
如果文件位于同一域中,或者您在外部站点上启用了CORS,则可以执行以下操作:
$.get("http://localhost/content/sound/hello.wav", function(file){
let fileInBase64Format = btoa(unescape(encodeURIComponent(file)));
console.log(fileInBase64Format);
});