尝试使用Node.js包播放声音播放通知声音。 但是,在尝试这样做时,我收到此错误: " Node.js播放声音:TypeError:无法读取属性'播放'未定义"
const player = require('play-sound')(opts = {});
start() {
this.player.play('/sounds/throughQueue.mp3', function(err){
if (err) throw err
})
}
如果我删除所有其他内容,这就是我的程序。 是的,我已经安装了播放声音包。
我没有使用过JS和Node,如果有任何信息遗失,或者如果您推荐另一个播放简单通知声音的套餐,请告诉我!
期待您的回答!
答案 0 :(得分:1)
作为https://facebook.github.io/react-vr/docs/native-modules.html,请参阅定义的player
变量player
,而不是this.player
:
const player = require('play-sound')(opts = {});
start() {
player.play('/sounds/throughQueue.mp3', function(err){
if (err) throw err
})
}