打开文件(支持相对路径)


接口说明

传入文件地址,打开文档。

HWH5.openFile

  • 基础库从 10.0.5 开始支持,低版本需做兼容处理
  • openFileInMDM在后续版本中将会逐渐废弃,请使用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);
    });
    

result. ""

    Not Found. ""