EditorContext.insertImage(Object object)

基础库 2.7.0 开始支持,低版本需做兼容处理

插入图片。

地址为临时文件时,获取的编辑器html格式内容中 <img> 标签增加属性 data-local,delta 格式内容中图片 attributes 属性增加 data-local 字段,该值为传入的临时文件地址。

开发者可选择在提交阶段上传图片到服务器,获取到网络地址后进行替换。替换时对于html内容应替换掉 <img> 的 src 值,对于 delta 内容应替换掉 insert { image: abc } 值。

参数

Object object

属性类型默认值必填说明
srcstring图片地址,仅支持 http(s)、base64、云图片(2.8.0)、临时文件(2.8.3)。
altstring图像无法显示时的替代文本
widthstring图片宽度(pixels/百分比)
heightstring图片高度 (pixels/百分比)
extClassstring添加到图片 img 标签上的类名
dataObjectdata 被序列化为 name=value;name1=value2 的格式挂在属性 data-custom 上
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码

  1. this.editorCtx.insertImage({
  2. src: 'xx',
  3. width: '100px',
  4. height: '50px',
  5. extClass: className
  6. })