tt.openDocument收藏我的收藏
收藏
我的收藏基础库 1.85.0 开始支持本方法,这是一个异步方法。
新开页面打开文档,支持格式:doc,docx,xls,xlsx,ppt,pptx,pdf。
前提条件 | 无 |
业务背景 | 无 |
使用限制 |
|
注意事项 | 无 |
支持沙盒 | 否 |
相关教程 | 无 |
语法
tt.openDocument(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
fileType | enum | 否 | 文件类型,指定文件类型打开文件,有效值 doc,docx,xls,xlsx,ppt,pptx,pdf | 1.85.0 | |
fileName | string | 否 | 文件名称,用于保存到手机以及预览页面标题 | 1.85.0 | |
filePath | string | 是 | 文件路径,可通过 downloadFile 获得 | 1.85.0 | |
success | function | 否 | 接口调用成功的回调函数 | 1.85.0 | |
fail | function | 否 | 接口调用 失败的回调函数 | 1.85.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.85.0 |
fileType 的合法值
值 | 说明 | 最低支持版本 |
---|---|---|
doc | 文件类型,指定文件类型打开文件 | 1.85.0 |
docx | 文件类型,指定文件类型打开文件 | 1.85.0 |
xls | 文件类型,指定文件类型打开文件 | 1.85.0 |
xlsx | 文件类型,指定文件类型打开文件 | 1.85.0 |
ppt | 文件类型,指定文件类型打开文件 | 1.85.0 |
pptx | 文件类型,指定文件类型打开文件 | 1.85.0 |
文件类型,指定文件类型打开文件 | 1.85.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "openDocument:ok" | 1.85.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "openDocument:fail" + 错误信息 | 1.85.0 |
错误码
errNo | errMsg | 说明 | 最低支持版本 |
---|---|---|---|
20000 | openDocument:fail filePath is required | filePath 参数错误 | 1.85.0 |
21101 | openDocument:fail no such file or directory %s | 找不到此文件 | 1.85.0 |
21102 | openDocument:fail permission denied, read %s | 无文件访问权限 | 1.85.0 |
21103 | openDocument:fail Can't support this format. | 不支持的文件格式 | 1.85.0 |
21104 | "openDocument:fail operation not permitted %s" | filePath 类型不是文件 | 2.60.0 |
扫码体验
请使用字节宿主APP扫码
代码示例
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("打开文档成功") }, }) }, })
点击纠错