无法在Meteor.js应用中播放声音

时间:2014-09-14 09:08:59

标签: meteor html5-audio

我无法在Meteor应用中播放声音。如果没有Meteor,它就会起作用。

if (Meteor.isClient) {
// counter starts at 0
Session.setDefault("counter", 0);

Template.hello.helpers({
counter: function () {
  return Session.get("counter");
}
});

Template.hello.events({
'click button': function () {
 new Audio('/root/test/audio.wav').play();
  // increment the counter when button is clicked
  Session.set("counter", Session.get("counter") + 1);
 }
});
}

if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
}

我也试过' audio.wav'作为路径,因为它位于应用程序的de根目录中。 (测试)

我希望有人可以提供帮助。谢谢。
问候Joris

1 个答案:

答案 0 :(得分:1)

刚刚发现:我把音频文件放在公共文件夹中