我想将创建的地址传递window.URL.createObjectURL(file)
给 dancer.js 但我得到了GET blob:http%3A//localhost/b847c5cd-aaa7-4ce0-8ff8-c13c6fc3505a.mp3 404 (Not Found)
.
我设法使用通过文件输入选择的文件创建音频元素,但 dancer.js 根本找不到文件......有什么想法吗?(下面我如何传递 ObjectURL)
$(document).ready(function(){
$("#submit").click(function(){
var file = document.getElementById("file").files[0];
$('body').append('<audio id="audio" controls="controls"></audio>');
$('#audio').append('<source src='+window.URL.createObjectURL(file)+' type=audio/mpeg />')
$('body').append('<a href='+window.URL.createObjectURL(file)+'>link</a>')
dancer(window.URL.createObjectURL(file));
})
})