打开文件(支持相对路径)
接口说明
传入文件地址,打开文档。
HWH5.openFile
请求参数
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
filePath | String | 是 | 本地文档URL |
返回结果
参数 | 说明 |
---|---|
status | 成功:1 ,失败 0 |
请求示例
ES6版本
HWH5.openFile({ filePath: 'download/mdm_text.xlsx' }).then(data => { console.log(data); }).catch(error => { console.log('打开文档失败', error); });
ES5版本
HWH5.openFile({ filePath: 'download/mdm_text.xlsx' }).then(function (data) { console.log(data); }).catch(function (error) { console.log('打开文档失败', error); });