gpt4 book ai didi

javascript - Howler.js 错误 : ' An array of source files must be passed with any new Howl '

转载 作者:太空狗 更新时间:2023-10-29 15:43:50 26 4
gpt4 key购买 nike

所以我正在尝试使用 Howler.js 来测试播放音频文件。当我运行此 html 文件并按下按钮时,我在控制台中收到一条错误消息,提示“任何新的 Howl 都必须传递一组源文件。”

html:

<!DOCTYPE html>
<html>
<head>
<title>Play Sound</title>
<script src='./howler.js/dist/howler.js'></script>
</head>
<body>
<button id="btn">Play</button>

<script>
var pong = new Howl({urls: ['sound.mp3', 'sound.ogg']});
document.getElementById('btn').onclick=function(){pong.play();}
</script>
</body>
</html>

最佳答案

应该是

var pong = new Howl({
src: ['sound.mp3', 'sound.ogg']
});

关于javascript - Howler.js 错误 : ' An array of source files must be passed with any new Howl ' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44348983/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com