我正在为多人在线实验开发一个大厅。大厅基本上是参与者等待我们拥有所需人数的阶段。我想在项目公共目录public/newPlayerSound.mp3
中播放铃声...我有以下帮助:
Template.lobby_page.helpers({
numWaiting(){
if (Meteor.userId()){
let lobby = Lobbies.findOne({players:Meteor.userId()});
if (lobby){
//play the newPlayerSound.mp3
return lobby.players.length
}
}
},
});
我想每次newPlayerSound.mp3
更改numWaiting()
。什么是一种简单的方法呢?