#yyds干货盘点#【愚公系列】2022年11月 微信小程序-富文本编辑器

时间:2022-11-06 16:00:11

前言

富文本编辑器,可以对图片、文字进行编辑。

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

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

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

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

一、富文本编辑器的使用

1.富文本编辑器属性

属性 类型 默认值 必填 说明 最低版本
read-only boolean false 设置编辑器为只读 2.7.0
placeholder string 提示信息 2.7.0
show-img-size boolean false 点击图片时显示图片大小控件 2.7.0
show-img-toolbar boolean false 点击图片时显示工具栏控件 2.7.0
show-img-resize boolean false 点击图片时显示修改尺寸控件 2.7.0
bindready eventhandle 编辑器初始化完成时触发 2.7.0
bindfocus eventhandle 编辑器聚焦时触发,event.detail = {html, text, delta} 2.7.0
bindblur eventhandle 编辑器失去焦点时触发,detail = {html, text, delta} 2.7.0
bindinput eventhandle 编辑器内容改变时触发,detail = {html, text, delta} 2.7.0
bindstatuschange eventhandle 通过 Context 方法改变编辑器内样式时触发,返回选区已设置的样式 2.7.0

2.富文本编辑器使用

1、定义模板

<template name="skyeditor">
<view class='toolbar' bindtap="format">
          <i class="iconfont icon-zitijiacu {{formats.bold ? 'ql-active' : ''}}"  bindtap="editorjs" ></i>
          <i class="iconfont icon-zitixieti {{formats.italic ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-zitixiahuaxian {{formats.underline ? 'ql-active' : ''}}"  bindtap="editorjs" ></i>
          <i class="iconfont icon-zitishanchuxian {{formats.strike ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-zuoduiqi {{formats.align === 'left' ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-juzhongduiqi {{formats.align === 'center' ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-youduiqi {{formats.align === 'right' ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-zuoyouduiqi {{formats.align === 'justify' ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-line-height {{formats.lineHeight ? 'ql-active' : ''}}"   bindtap="editorjs" ></i>
          <i class="iconfont icon-Character-Spacing {{formats.letterSpacing ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-722bianjiqi_duanqianju {{formats.marginTop ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-723bianjiqi_duanhouju {{formats.micon-previewarginBottom ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-clearedformat"  bindtap="editorjs" ></i>
          <i class="iconfont icon-font {{formats.fontFamily ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-fontsize {{formats.fontSize === '24px' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>

          <i class="iconfont icon-text_color {{formats.color === '#0000ff' ? 'ql-active' : ''}}"  data-value="#0000ff"  bindtap="editorjs" ></i>
          <i class="iconfont icon-fontbgcolor {{formats.backgroundColor === '#00ff00' ? 'ql-active' : ''}}"  data-value="#00ff00"  bindtap="editorjs" ></i>

          <i class="iconfont icon-date" bindtap="editorjs" ></i>
          <i class="iconfont icon--checklist"    bindtap="editorjs" ></i>
          <i class="iconfont icon-youxupailie {{formats.list === 'ordered' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-wuxupailie {{formats.list === 'bullet' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-undo"  bindtap="editorjs" ></i>
          <i class="iconfont icon-redo"  bindtap="editorjs" ></i>

          <i class="iconfont icon-outdent"    bindtap="editorjs" ></i>
          <i class="iconfont icon-indent"  data-value="+1"  bindtap="editorjs" ></i>
          <i class="iconfont icon-fengexian"  bindtap="editorjs" ></i>
          <i class="iconfont icon-charutupian" bindtap="editorjs" ></i>
          <i class="iconfont icon-format-header-1 {{formats.header === 1 ? 'ql-active' : ''}}"  data-value="{{1}}"  bindtap="editorjs" ></i>
          <i class="iconfont icon-zitixiabiao {{formats.script === 'sub' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <i class="iconfont icon-zitishangbiao {{formats.script === 'super' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>
          <!-- <i class="iconfont icon-quanping"></i> -->
          <i class="iconfont icon-shanchu" bindtap="editorjs" ></i>
          <i class="iconfont icon-direction-rtl {{formats.direction === 'rtl' ? 'ql-active' : ''}}"    bindtap="editorjs" ></i>

        </view>

        <editor  class="ql-container" placeholder="{{placeholder}}" showImgSize showImgToolbar showImgResize bindstatuschange="onStatusChange" read-only="{{readOnly}}" bindready="onEditorReady">
        </editor>
</template>

function editorfunction(e) {

  //获取当前工作路径,that变量等同于页面本身的this
  var pages = getCurrentPages();
  var that = pages[pages.length - 1]
  var e = e.currentTarget.dataset
  //改变文本样式方法
  if (e.bind == "format") {
    if (!e.name) return
    that.editorCtx.format(e.name, e.value)
  }
  //删除字体样式方法
  if (e.bind == "removeFormat") {
    that.editorCtx.removeFormat()
  }
  //快速插入日期方法
  if (e.bind == "insertDate") {
    var date = new Date()
    var formatDate = `${date.getFullYear()}年${date.getMonth() + 1}月${date.getDate()}日`
    that.editorCtx.insertText({
      text: formatDate
    })
  }
  //撤销操作方法
  if (e.bind == "undo") {
    that.editorCtx.undo()
  }
  //恢复操作方法
  if (e.bind == "redo") {
    that.editorCtx.redo()
  }
  //添加分割线方法
  if (e.bind == "insertDivider") {
    that.editorCtx.insertDivider()
  }
  //清除内容方法
  if (e.bind == "clear") {
    that.editorCtx.clear()
  }
  //插入图片方法
  if (e.bind == "insertImage") {
    wx.chooseImage({
      count: 1,
      sizeType: ["compressed"], // 可以指定是原图还是压缩图,默认二者都有
      sourceType: ["album", "camera"], // 可以指定来源是相册还是相机,默认二者都有
      success: function (res) {
        wx.showLoading({
          title: "加载中",
          mask: true
        })
        wx.uploadFile({
          url: getApp().globalData.url + "activity/uploadimg",//里填写自己的图片上传方法地址
          header: {// 设置请求的 header
            "content-type": "multipart/form-data"
          },
          filePath: res.tempFilePaths[0],
          name: "img",
          success(res) {
            wx.hideLoading()
            var data = JSON.parse(res.data)
            if (data.code == 1) {
              that.editorCtx.insertImage({
                src: data.data,
                data: {
                  id: "abcd",
                  role: "god"
                },
              })
            } else {
              wx.showToast({
                title: data.data,
                icon: "none"
              })
            }
          }
        })
      }
    })
  }
}

module.exports = {
  editorfunction: editorfunction,//引用editor方法,外部唯一暴露接口
}
@import "../../common/lib/weui.wxss";
@import "../../common/lib/iconfont.wxss";
.iconfont {
  display: inline-block;
  padding: 8px 8px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 20px;
}

.toolbar {
  box-sizing: border-box;
  /* border: 1px solid #ccc; */
  border-bottom: 0;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.ql-container {
  box-sizing: border-box;
  padding: 12px 15px;
  width: 100%;
  min-height: 30vh;
  height: auto;
  background: #fff;
  margin: 20px 0px;
  font-size: 16px;
  line-height: 1.5;
  border: 1rpx solid #cccccc;
  border-radius: 15rpx;
}

.ql-active {
  color: #06c;
}

2、页面引用模板


<text>
使用说明:
1、在js文件中引入模板文件js
2、在css文件中引入模板文件wxss
3、在wxml文件中引入,不想用的图标只需要删除相应的i即可。
</text>

<import src="../../templates/skyeditor/skyeditor"/>
<template is="skyeditor" data="{{formats:editor_formats}}"/>

<button class="button" type="primary" bindtap="gotoyingyong">查看应用</button>
// pages/default/default.js
var editorjs = require('../../templates/skyeditor/skyeditor.js')

Page({

  /**
   * 页面的初始数据
   */
  data: {

  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {

  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  },

  gotoyingyong:function(){
    wx.navigateTo({
      url: '../yingyong/yingyong',
    })
  },
  /**
   * 重写没有任何实际意义,只是为了编辑器不带警告,删除也不影响运行。
   * 如果处女座不想看到警告,把其它的方法写一下就行了。
   */
  format:function(){},

   //实例化富文本
   onEditorReady() {
    var that = this
    wx.createSelectorQuery().select('#editor').context(function (res) {
     that.editorCtx = res.context
       }).exec()
   },
    
  //富文本样式改变后,向WXML传值,改变按钮选中状态方法
  onStatusChange(e) {
   this.setData({editor_formats: e.detail})
  },
  //设置富文本内容方法
 setEditor:function(e){
     this.setData({
     editorhtml:e.detail.html
 })
 //富文本最终得到的HMTL数据为:this.data.html
 },
 //引用editor方法
 editorjs:function(e){
  editorjs.editorfunction(e)
 },
})
@import "../../templates/skyeditor/skyeditor.wxss";

3.实际效果

#yyds干货盘点#【愚公系列】2022年11月 微信小程序-富文本编辑器