我正在尝试播放位于我资源文件夹中的声音; WWW / cssScript /声音/ Chicken.mp3。我使用来自phonegap的媒体对象这样做,它在Android上工作正常,我知道媒体对象本身没问题。我试图在我的模拟器中播放它,但是无法这样做,并且目前没有iPhone。
是否可以使用iphone模拟器播放本地音频?如果是这样,我做错了什么?这是我给媒体对象的路径:
/Users/thomastveten/Library/Application%20Support/iPhone%20Simulator/7.0.3/Applications/5F9867C8-1919-4238-87F9-EED4EA893155/GuessThisSound.app/www/cssScript/sound/Chicken.mp3
我使用下面的代码获取路径:
var path = window.location.pathname;
// path = path.substr( 0, path.length - 10 );
// return path;
var phoneGapPath = path.substring(0, path.lastIndexOf('/') + 1);