• editor
  • 支持的标签
  • 支持的内连样式

    editor

    富文本编辑器,可以对图片、文字格式进行编辑和混排。

    编辑器导出内容支持带标签的 html和纯文本的 text,编辑器内部采用 delta 格式进行存储。

    通过setContents接口设置内容时,解析插入的 html 可能会由于一些非法标签导致解析错误,建议开发者在应用内使用时通过 delta 进行插入。

    富文本组件内部引入了一些基本的样式使得内容可以正确的展示,开发时可以进行覆盖。需要注意的是,在其它组件或环境中使用富文本组件导出的html时,需要额外引入这段样式,并维护<ql-container><ql-editor></ql-editor></ql-container>的结构,参考:使用 editor 组件导出的 html。

    图片控件仅初始化时设置有效。

    相关 api:editorContext

    平台差异说明

    AppH5微信小程序支付宝小程序百度小程序头条小程序
    2.0.0+ 自定义组件编译模式,不含nvuex基础库 2.7.0+xxx

    本功能自HBuilderX2.0起支持。运行到微信小程序工具时,注意在微信工具里选择最新的基础库。

    editor组件目前只有App的vue页面和微信支持,其他端的富文本编辑解决方案,可使用web-view加载web页面,也可搜索插件市场 获取简单的markdown富文本编辑器

    属性类型默认值必填说明
    read-onlybooleanfalse设置编辑器为只读
    placeholderstring提示信息
    show-img-sizebooleanfalse点击图片时显示图片大小控件
    show-img-toolbarbooleanfalse点击图片时显示工具栏控件
    show-img-resizebooleanfalse点击图片时显示修改尺寸控件
    bindreadyeventhandle编辑器初始化完成时触发
    bindfocuseventhandle编辑器聚焦时触发,event.detail = {html, text, delta}
    bindblureventhandle编辑器失去焦点时触发,detail = {html, text, delta}
    bindinputeventhandle编辑器内容改变时触发,detail = {html, text, delta}
    bindstatuschangeeventhandle通过 Context 方法改变编辑器内样式时触发,返回选区已设置的样式

    编辑器内支持部分 HTML 标签和内连样式,不支持classid

    支持的标签

    不满足的标签会被忽略,`会被转行为

    `储存。

    类型节点
    行内元素<strong> <b> <ins> <em> <i> <u> <del> <s> <sub> <sup> <img>
    块级元素<p> <h1> <h2> <h3> <h4> <h5> <h6> <hr> <ol> <ul> <li>

    支持的内连样式

    内联样式仅能设置在行内元素或块级元素上,不能同时设置。例如 font-size` 归类为行内元素属性,在 p 标签上设置是无效的。

    类型样式
    块级样式text-align direction margin margin-top margin-left margin-right margin-bottom

    padding padding-top padding-left padding-right padding-bottom line-height text-indent || 行内样式 | font font-size font-style font-variant font-weight font-familyletter-spacing text-decoration color background-color |

    注意事项

    • 插入的 html 中事件绑定会被移除
    • formats 中的 color 属性会统一以 hex 格式返回
    • 粘贴时仅纯文本内容会被拷贝进编辑器
    • 插入 html 到编辑器内时,编辑器会删除一些不必要的标签,以保证内容的统一。例如<p>xxx</p>会改写为<p>xxx</p>
    • 编辑器聚焦时页面会被上推,系统行为以保证编辑区可见示例代码
    1. <template>
    2. <view class="container">
    3. <editor id="editor" class="ql-container" :placeholder="placeholder" @ready="onEditorReady"></editor>
    4. <button type="warn" @tap="undo">撤销</button>
    5. </view>
    6. </template>
    7. <script>
    8. export default {
    9. data() {
    10. return {
    11. placeholder: '开始输入...'
    12. }
    13. },
    14. methods: {
    15. onEditorReady() {
    16. uni.createSelectorQuery().select('#editor').context((res) => {
    17. this.editorCtx = res.context
    18. }).exec()
    19. },
    20. undo() {
    21. this.editorCtx.undo()
    22. }
    23. }
    24. }
    25. </script>
    26. <style>
    27. .container {
    28. padding: 10px;
    29. }
    30. #editor {
    31. width: 100%;
    32. height: 300px;
    33. background-color: #CCCCCC;
    34. }
    35. button {
    36. margin-top: 10px;
    37. }
    38. </style>

    发现错误?想参与编辑?在 GitHub 上编辑此页面!