```javascript
uni.downloadFile({
url: 'https://xxxxxxxxxxxxxxxxxxxxxxxxxx.pdf',
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});
```
```javascript
uni.downloadFile({
url: 'https://xxxxxxxxxxxxxxxxxxxxxxxxxx.pdf',
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});
```
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
最新评论