标签: javascript xmlhttprequest polymer-1.0
这是我的代码
fd.append('type', 'audio'); fd.append('file', audioBlob); fd.append('name', 'example.wav'); let xhr = new XMLHttpRequest(); xhr.open('post', url, true); xhr.send(fd);
有没有办法使用Polymer 1.x将其转换为.wav文件?