tt.downloadFile({
// 仅为示例 url,并非真实地址
url: "http://example.com/somefile.pdf",
success: function (res) {
const filePath = res.tempFilePath;
tt.openDocument({
filePath: filePath,
success: function (res) {
console.log("打开文档成功");
},
});
},
});
调用官方api打开PDF文件,IOS可以正常打开,安卓无法直接打开预览