wlc002
Results
3
comments of
wlc002
添加:enableMTA:NO 即可解决。
i solved this problem ,the reason is that ios expects a URL of the form "cdvfile://path/to/mp3" so i use toInternalURL() ,it worked! this.file.resolveLocalFilesystemUrl(encodeURI(audioFile)).then((entry) => { audio.src = entry.toInternalURL(); }); this...