我将所有下载的媒体文件列在一个页面中。我在这里使用cordova-2.7.0。
尝试加载视频文件(.mov)和音频文件(.mp3)时显示"webView:didFailLoadWithError - Plug-in handled load"
错误。
我使用以下代码使用inAppBrowser打开音频和视频文件。
var ref = window.open(url, '_blank', 'location=yes');
ref.addEventListener('loadstart', function(event) {});
ref.addEventListener('loadstop', function(event) {});
ref.addEventListener('loaderror', function(event) {});
ref.addEventListener('exit', function(event) {});
提前致谢。