amis2/docs/zh-CN/components/office-viewer.md

8.2 KiB
Raw Blame History

title description type group menuName icon order
Office Viewer 0 ⚙ 组件 OfficeViewer 文档渲染 23

2.9.0 及以上版本

用于渲染 office 文档,目前只支持 docx 格式,通过前端转成 HTML 的方式进行渲染,支持以下功能:

  • 基础文本样式
  • 表格及表格样式
  • 内嵌图片
  • 列表
  • 注音
  • 链接
  • 文本框
  • 数学公式(依赖 MathML需要比较新的浏览器或者试试 polyfill

不支持的功能:分页符、形状、艺术字、域、对象、目录

基本用法

{
  "type": "office-viewer",
  "src": "/examples/static/simple.docx",
  "wordOptions": {
    "padding": "8px",
    "ignoreWidth": false
  }
}

渲染配置项

目前只支持 Word 文档,所以只有 word 的配置项,放在 wordOptions

word 渲染配置属性表

{
  "type": "office-viewer",
  "wordOptions": {
    "padding": "8px",
    "ignoreWidth": false
  }
}
属性名 类型 默认值 说明
classPrefix string 'docx-viewer' 渲染的 class 类前缀
ignoreWidth boolean false 忽略文档里的宽度设置,用于更好嵌入到页面里,但会减低还原度
padding string 设置页面间距,忽略文档中的设置
bulletUseFont boolean true 列表使用字体渲染,请参考下面的乱码说明
fontMapping object 字体映射,是个键值对,用于替换文档中的字体
forceLineHeight string 设置段落行高,忽略文档中的设置
enableVar boolean true 是否开启变量替换功能

关于渲染效果差异

目前的实现难以保证和本地 Word 渲染完全一致,会遇到以下问题:

  1. 字体大小不一致
  2. 单元格宽度不一致,表格完全依赖浏览器渲染
  3. 分页显示,目前的渲染不会分页,而是内容有多长就有多高
  4. 分栏显示,这个是因为没有分页导致的,不限制高度没法分栏

如果追求完整效果打印,目前只能使用下载文件的方式用本地 Word 进行打印。

列表符号出现乱码问题

默认情况下列表左侧的符号使用字体渲染,这样能做到最接近 Word 渲染效果,但如果用户的系统中没有这些字体就会显示乱码,为了解决这个问题需要手动在 amis 渲染的页面里导入对应的字体,比如

<style>
  @font-face {
    font-family: Wingdings;
    src: url(./static/font/wingding.ttf);
  }

  @font-face {
    font-family: Symbol;
    src: url(./static/font/symbol.ttf);
  }
</style>

目前已知会有 WingdingsSymbol 两个字体,可能还有别的

如果不想嵌入这两个字体,就只能在前面的 wordOptions 里设置 bulletUseFont: false

变量替换

文档可以预先定义变量,通过配置 enableVar 来开启这个功能,在实际渲染时根据上下文数据来渲染变量,比如

{
  "type": "form",
  "title": "",
  "mode": "inline",
  "wrapWithPanel": false,
  "body": [
    {
      "type": "input-text",
      "name": "name",
      "value": "amis",
      "label": "姓名"
    },
    {
      "type": "input-email",
      "name": "email",
      "label": "邮箱"
    },
    {
      "type": "input-text",
      "name": "phone",
      "label": "手机号"
    },
    {
      "type": "office-viewer",
      "id": "office-viewer",
      "src": "/examples/static/info.docx",
      "wordOptions": {
        "enableVar": true,
        "padding": "8px"
      }
    }
  ]
}

如果关闭将显示原始文档

{
  "type": "office-viewer",
  "id": "office-viewer",
  "src": "/examples/static/info.docx",
  "wordOptions": {
    "padding": "8px"
  }
}

变量说明

目前变量使用的写法是 {{name}},其中 name 代表变量名,另外这里可以是 amis 表达式,比如前面示例的 {{DATETOSTR(TODAY(), 'YYYY-MM-DD')}}

为了避免 Word 自作主张添加额外标签,对于复杂的变量建议先在记事本之类的纯文本编辑器里编辑,再粘贴进 Word 里。

表格行循环

目前针对表格支持循环语法,下面例子中第一个是模板里的变量写法,循环以 {{#xxx}} 开头,{{/}} 结束(不过目前还不支持嵌套语法,所以这个结束符合可以省略)

{
  "type": "page",
  "data": {
    "users": [
      {
        name: 'u1',
        age: 10
      },
      {
        name: 'u2',
        age: 11
      }
    ]
  },
  "body": [
  {
    "type": "office-viewer",
    "src": "/examples/static/table-list.docx",
    "wordOptions": {
      "padding": "8px"
    }
  },
  {
    "type": "action",
    "label": "下载文档",
    "onEvent": {
        "click": {
          "actions": [
            {
              "actionType": "saveAs",
              "componentId": "office-viewer-table-list"
            }
          ]
        }
      }
  },
  {
    "type": "office-viewer",
    "id": "office-viewer-table-list",
    "src": "/examples/static/table-list.docx",
    "wordOptions": {
      "padding": "8px",
      "enableVar": true,
      "ignoreWidth": true
    }
  }]
}

循环的语法是以 {{#name}} 开始,{{/}} 结束,在这期间的变量会取循环内的值

不渲染模式

通过配置 display: false 可以让文档不渲染,虽然不渲染,但还是可以使用后面的下载及打印功能

下载文档

基于事件动作实现

[
  {
    "type": "action",
    "label": "下载文档",
    "onEvent": {
        "click": {
          "actions": [
            {
              "actionType": "saveAs",
              "componentId": "office-viewer-download"
            }
          ]
        }
      }
  },
  {
    "type": "office-viewer",
    "id": "office-viewer-download",
    "display": false,
    "src": "/examples/static/simple.docx"
  }
]

打印文档

基于事件动作实现

[
  {
    "type": "action",
    "label": "打印",
    "onEvent": {
        "click": {
          "actions": [
            {
              "actionType": "print",
              "componentId": "office-viewer-print"
            }
          ]
        }
      }
  },
  {
    "type": "office-viewer",
    "id": "office-viewer-print",
    "display": false,
    "src": "/examples/static/simple.docx"
  }
]

配合文件上传实现预览功能

配置和 input-file 相同的 name 即可

{
  "type": "form",
  "title": "",
  "wrapWithPanel": false,
  "body": [
    {
      "type": "input-file",
      "name": "file",
      "label": "File",
      "asBlob": true,
      "accept": ".docx"
    },
    {
      "type": "office-viewer",
      "id": "office-viewer",
      "name": "file"
    }
  ]
}

是否显示 loading

通过 "loading": true 配置显示 loading

属性表

属性名 类型 默认值 说明
src Api 文档地址
loading boolean false 是否显示 loading 图标
enableVar boolean 是否开启变量替换功能
wordOptions object Word 渲染配置

动作表

当前组件对外暴露以下特性动作,其他组件可以通过指定actionType: 动作名称componentId: 该组件id来触发这些动作,动作配置可以通过args: {动作配置项名称: xxx}来配置具体的参数,详细请查看事件动作

动作名称 动作配置 说明
saveAs name?: string 文件名 下载文档
print - 打印文档