我无法在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
答案 0 :(得分:1)
刚刚发现:我把音频文件放在公共文件夹中