我是Cordova的新手,我正在尝试在我的应用程序中播放视频。我在我的应用程序中使用了moust视频播放器插件,但是当我运行应用程序时因为videoplayer未定义而出错。请帮助我...我正在使用cordova 6.2.0。,ubuntu os,Google Chrome浏览器来运行应用程序。
showVideo: function(letter){
debugger;
if(letter ==""){
letter=site.findLetterToPlayByDefault();
}
site.currentChildLetter = letter;
var videoPath = site.getLetterFromDb(letter);
var src = null;
//app.isLocal() ? "" : cordova.file.applicationDirectory+"www/videos/";
if(videoPath!=null){
src = videoPath;
} else {
app.log("No video set for letter: "+ letter);
return;
}
app.log("Playing video at : "+ src + " using "+VideoPlayer);
}