首頁 > 軟體

微信小程式中富文字編輯器的實現

2022-06-11 14:02:21

小程式也是有富文字編輯器這個控制元件的,別說,之前我還真沒注意。

官方檔案

官方檔案中給出的東西倒是不多,具體的程式碼範例在下圖紅框中標註的位置:

範例程式碼大概是這個樣子:

通過官方的範例,我這邊大概瞭解了一下微信小程式editor的使用,我這裡封裝了一個自定義元件:

效果如下圖所示:

功能展示大概就是這個樣子,我這裡放一下我元件的全部程式碼:

myEditor.js

// api 請求類
const API = require("../../request/api.js").report;
// 公共函數庫
const utils = require("../../utils/util.js");
// 加密字元
const constant = require("../../utils/constant.js");
// 雙語字典
const languageUtils = require("../../language/languageUtils");
// 獲取應用範例
const app = getApp();
Component({
  /**
   * 元件的屬性列表
   */
  properties: {
    project_id: {
      type: Number,
      value: "",
    },
    //編輯器預設提示語
    placeholder: {
      type: String,
      value: "開始編輯吧...",
    },
    // 修改時顯示內容
    richTextContents: {
      type: String,
      value: "",
    },
    // 編輯的富文字的索引
    index: {
      type: Number,
      value: 0,
    },
  },
  /**
   * 元件的初始資料
   */
  data: {
    // 使用者手機鍵盤得高度,大於0表示開啟了鍵盤
  },
  /**
   * 元件的方法列表
   */
  methods: {
    /**
     * @name: 編輯器初始化完成時觸發
     * @author: camellia
     * @date: 20211220
     */
    onEditorReady() {
      let self = this;
      this.triggerEvent("onEditorReady");
      // 獲取編輯器範例
      self
        .createSelectorQuery()
        .select("#editor")
        .context((res) => {
          self.editorCtx = res.context;
          self.setContents(self.properties.richTextContents); //設定富文字內容
        })
        .exec();
    },
    /**
     * @name: 點選工具列格式化編輯文字
     * @author: camellia
     * @date: 20211220
     */
    format(e) {
      let self = this;
      let { name, value } = e.target.dataset;
      // 富文字編輯器格式化內容方法
      self.editorCtx.format(name, value);
    },
    /**
     * @name: 工具列選項選中,圖示出現選中樣式
     * @author: camellia
     * @date: 20211220
     */
    onStatusChange(e) {
      let self = this;
      self.setData({
        formats: e.detail,
      });
    },
    /**
     * @name: 設定富文字內容
     * @author: camellia
     * @date: 2021-12-23
     * @param:	rechtext	string	富文字內容
     */
    setContents(rechtext) 
    {
      this.editorCtx.setContents({
        html: rechtext,
        success: (res) => {
          // 富文字內容設定成功
          // console.log("[setContents success]", res);
        },
      });
    },
    /**
     * @name: 富文字編輯器輸入時,獲取值
     * @author: camellia
     * @date: 20211220
     */
    getEditorContent() 
    {
      let self = this;
      // 富文字編輯器獲取內容方法
      self.editorCtx.getContents({
        success: (res) => {
          let array = [];
          array["html"] = res.html;
          array["index"] = self.properties.index;
          // 通過自定義事件把內容傳到父元件
          self.triggerEvent("getEditorValue", array);
        },
      });
    },
    
  },
});

myEditor.json

{
  "component": true,
  "usingComponents": {}
}

myEditor.wxss

@import "./icon/icon.wxss";

.ql-container{
    padding: 12rpx;
    border: 1rpx solid #707070;

}
/* 工具列 */
.toolbar {
    z-index: 999;
    box-sizing: border-box;
    padding: 0 20rpx;
    height: 100rpx;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2rpx solid #ECECEC;
    border-left: none;
    border-right: none;
    background-color: #FFFFFF;
}
/* 工具列點選時出現選中樣式 */
.ql-active {
    color:  #22C704;
}

myEditor.wxml

<view class="toolbar" catchtouchend="format">
      <i class="iconfont icon-charutupian" catchtouchend="insertImage"></i> 
      <i class="iconfont icon-format-header-2 {{formats.header === 2 ? 'ql-active' : ''}}" data-name="header" data-value="{{2}}"></i>
      <i class="iconfont icon-format-header-3 {{formats.header === 3 ? 'ql-active' : ''}}" data-name="header" data-value="{{3}}"></i>
      <i class="iconfont icon-zitijiacu {{formats.bold ? 'ql-active' : ''}}" data-name="bold"></i>
      <i class="iconfont icon-zitixieti {{formats.italic ? 'ql-active' : ''}}" data-name="italic"></i>
      <i class="iconfont icon-zitixiahuaxian {{formats.underline ? 'ql-active' : ''}}" data-name="underline"></i>
      <i class="iconfont icon--checklist" data-name="list" data-value="check"></i>
      <i class="iconfont icon-youxupailie {{formats.list === 'ordered' ? 'ql-active' : ''}}" data-name="list" data-value="ordered"></i>
      <i class="iconfont icon-wuxupailie {{formats.list === 'bullet' ? 'ql-active' : ''}}" data-name="list" data-value="bullet"></i>
</view>
<editor style="height:auto; min-height:240rpx;"  
        id="editor" 
        class="ql-container"
        bindinput="getEditorContent"
        bindready="onEditorReady"
        bindstatuschange="onStatusChange">
</editor>

以上就是微信小程式中富文字編輯器的實現的詳細內容,更多關於小程式富文字編輯器的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com