test() {
uni.downloadFile({
url: 'http://cn.createpdfonline.org/pdffiles/hou(20191008093231).pdf',
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});
}
按照文档的写法,可以打开pdf文档,但是需要点击两次后才会新开页面预览pdf
求解?!!
0 个回复