微信小程序实战之实现富文本编辑器

Posted 梅花十三儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序实战之实现富文本编辑器相关的知识,希望对你有一定的参考价值。

前言

这是我参加掘金启航计划的第三篇文章,这次总结的是实现一个简单的富文本编辑器,相信阅读文章后,观众老爷们,能够实现富文本编辑器,在微信小程序中发布自己的文章,希望观众老爷们多多支持!

1. 实现效果

实现的效果如下图:

1.文本加粗、斜体、下划线,对齐方式
2.撤销、恢复、插入图片、删除功能。

2. 创建发布页面,实现基本布局

首先创建发布页面 article,在 app.json 中通过配置生成页面即可。

"pages": ["pages/article/article"] 

article.wxml 中,书写结构:

<view><!-- 文章类型 --><view><picker bindchange="bindPickerChange" model:value="index" range="array"><view class="picker">文章类型:objectArray[index].name</view></picker></view><!-- 文章标题 --><view><input name="title" class="title" placeholder="请输入文章标题" maxlength="18" model:value="title"></input></view><!-- 编辑区 --><view class="container"><view class="page-body"><view class='wrapper'><!-- 操作栏 --><view class='toolbar' bindtap="format"> <i class="iconfont icon-zitijiacu"></i><i class="iconfont icon-zitixieti"></i><i class="iconfont icon-zitixiahuaxian"></i><i class="iconfont icon-zuoduiqi"></i><i class="iconfont icon-juzhongduiqi"></i><i class="iconfont icon-youduiqi"></i><i class="iconfont icon-undo"></i><i class="iconfont icon-redo"></i> <i class="iconfont icon-charutupian"></i><i class="iconfont icon-shanchu"></i></view><!-- 文章内容区,富文本编辑器 --><editor id="editor" class="ql-container" placeholder="placeholder"showImgSize showImgToolbar showImgResize></editor><!-- 发布按钮 --><view class="button" bindtap="formSubmit">发布</view></view></view></view>
</view> 

article.wxss,书写基本的样式:

pagewidth: 740rpx;margin: 0 auto;background-color: #f9f9f9;



.title border: 1rpx solid #f2f2f2;margin: 10rpx;height: 70rpx;line-height: 70rpx;border-radius: 10rpx;


.pickerpadding: 10rpx;


.wrapper padding: 5px;


.iconfont display: inline-block;padding: 8px 8px;width: 24px;height: 24px;cursor: pointer;font-size: 20px;


.toolbar box-sizing: border-box;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-top: 20px;font-size: 16px;line-height: 1.5;border: 1rpx solid #f2f2f2;border-radius: 15rpx;


.buttonwidth: 360rpx;height: 80rpx;line-height: 80rpx;text-align: center;margin: auto;margin-top: 50rpx;border-radius: 8rpx;font-size: 32rpx;color: white;background-color: #497749!important;
 

这时我们会发现中间的操作栏图标不显示,我们需要在 article.wxss 中头部引入 iconfont.wxss 字体图标。

@import "./assets/iconfont.wxss"; 

3. 实现编辑区操作栏的功能

本文只实现操作栏的功能,实现富文本编辑,其他文章类型的选择,请自行实现,不难哦!

首先,我们需要获取富文本编辑器实例 EditorContext,通过 wx.createSelectorQuery 获取,我们在页面 Page 函数中,创建 onEditorReady 函数,用于获取该实例:

 onEditorReady() const that = thiswx.createSelectorQuery().select('#editor').context(function (res) that.editorCtx = res.context).exec() 

然后将该方法绑定到富文本编辑器的 bindready 属性上,随着富文本编辑器初始化完成后触发,从而获取实例。

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

3.1. 实现文本加粗、斜体、文本下划线、左对齐、居中对齐、右对齐

我们如何修改文本的样式呢?

  • 通过 EditorContext 实例提供的APIEditorContext.format(string name, string value),进行样式修改。
  • name:CSS属性;value:值。

通过查阅微信小程序开发文档可知,实现上述功能,我们需要的 namevalue的值为:

那么我们如何通过点击按钮,来修改文本样式呢?

  • 首先我们在图标 <i> 标签上绑定namevalue 属性,填上图标所对应上图的 namevalue,无 value 的不填即可。
  • 然后在父标签上绑定事件 format,通过该事件函数,使用 EditorContext.format API 进行样式修改。
 <view class='toolbar' bindtap="format"><i class="iconfont icon-zitijiacudata-name="bold"></i><i class="iconfont icon-zitixieti data-name="italic"></i><i class="iconfont icon-zitixiahuaxiandata-name="underline"></i><i class="iconfont icon-zuoduiqidata-name="align" data-value="left"></i><i class="iconfont icon-juzhongduiqidata-name="align" data-value="center"></i><i class="iconfont icon-youduiqi data-name="align" data-value="right"></i></view> 

Page 函数中的 format 函数:

 format(e) let name,value = e.target.datasetif (!name) returnthis.editorCtx.format(name, value), 

问题:当我们点击图标时,改变了文本样式,但是图标的样式没有改变,无法提示我们文本现在的样式状态,那该怎么解决呢?

  • 这时候我们就需要动态改变字体图标的样式了,比如点击图标后,改变颜色。

通过查阅 editor 微信小程序开发相关文档后,bindstatuschange 属性绑定的方法,会在当你通过 Context 方法改变编辑器内样式时触发,会返回选区已设置的样式。

那么我们可以在 data 中,添加 formats 对象,存储点击后的样式属性。然后在点击图标按钮时,通过 bindstatuschange 绑定的方法,得到已设置的样式存储到 formats 中;在模板渲染时,在<i>class 属性上,添加 formats.align === 'right' ? 'ql-active' : ''(如文本向右),当你点击了这个图标,那么 formats 中就有这个属性了,那么就添加我们的动态类名 ql-active 改变图标颜色。

具体实现

1.对 editor 标签属性 bindstatuschange 绑定方法 onStatusChange

<editor id="editor" 
class="ql-container" 
placeholder="placeholder"showImgSize showImgToolbar showImgResizebindstatuschange="onStatusChange" 
read-only="readOnly" 
bindready="onEditorReady"> 
 onStatusChange(e) const formats = e.detailthis.setData(formats) 

2.在图标 <i> 标签上,添加formats.align === 'right' ? 'ql-active' : ''

 <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-zuoduiqi formats.align === 'left' ? 'ql-active' : ''" data-name="align" data-value="left"></i><i class="iconfont icon-juzhongduiqi formats.align === 'center' ? 'ql-active' : ''" data-name="align" data-value="center"></i><i class="iconfont icon-youduiqi formats.align === 'right' ? 'ql-active' : ''" data-name="align" data-value="right"></i> 

3.在 article.wxss 添加 ql-active

.ql-active color: #497749;
 

3.2. 实现撤销、恢复、插入图片、删除操作

首先在 <i> 标签上绑定相应的事件:

 <i class="iconfont icon-undo" bindtap="undo"></i><i class="iconfont icon-redo" bindtap="redo"></i> <i class="iconfont icon-charutupian" bindtap="insertImage"></i><i class="iconfont icon-shanchu" bindtap="clear"></i> 

撤销 undo

调用 EditorContext API 即可

 undo() this.editorCtx.undo() 

恢复 redo

同理

 redo() this.editorCtx.redo() 

插入图片 insertImage

同理

 insertImage() const that = thiswx.chooseImage(count: 1,success: function (res) wx.showLoading(title: '正在上传图片',)wx.cloud.uploadFile(cloudPath: `news/upload/$time.formatTime(new Date)/$Math.floor(Math.random() * 100000000).png`, // 上传至云端的路径filePath: res.tempFilePaths[0], success: cover => that.editorCtx.insertImage(src: cover.fileID,data: id: cover.fileID,role: 'god',success: function () wx.hideLoading()))) 

清空 clear

同理

 clear() this.editorCtx.clear(success: function (res) console.log("clear success")) 

最后

最近找到一个VUE的文档,它将VUE的各个知识点进行了总结,整理成了《Vue 开发必须知道的36个技巧》。内容比较详实,对各个知识点的讲解也十分到位。



有需要的小伙伴,可以点击下方卡片领取,无偿分享

uniapp开发微信小程序富文本编辑器(样式仿腾讯文档)

参考技术A

照着腾讯文档小程序开发了微信小程序富文本编辑器组件,这几天做个整理,如有这个需求可以前往腾讯文档小程序操作看看实际效果。毕竟参照的是微信自家小程序,无法做到百分百效果,只能按现有开放api尽可能实现。
项目地址:
https://github.com/chellel/wechat-editor-project

uniapp插件市场:
https://ext.dcloud.net.cn/plugin?id=6365

editor富文本编辑器组件官方文档:
https://developers.weixin.qq.com/miniprogram/dev/component/editor.html

否则会受到小程序css影响。小程序本身editor标签有css样式:
editor
display: block;
position: relative;
box-sizing: border-box;
-webkit-user-select: text;
user-select: text;
outline: 0;
overflow: hidden;
width: 100%;
height: 200px;
min-height: 200px;

that.updatePosition(keyboardHeight)
that.editorCtx.scrollIntoView()

在插入目标文字时,将值设为\\n\',可以实现换行
this.editorCtx.insertText( text: \'\\n\' );

参考:请问editor组件控制拉起键盘操作支持吗?
https://developers.weixin.qq.com/community/develop/doc/0006eeb6ae8cf0e7f3293e13f56400?highLine=editor%25E6%2598%25BE%25E7%25A4%25BA%25E9%2594%25AE%25E7%259B%2598

小程序技术专员-sanford 2019-09-20

不支持的。iOS无法通过接口拉起键盘,必须用户点击;安卓则可以。所以,终究是不一致,不行。。

该组件主要为微信editor组件的api调用集成封装,因此受到的限制同文档描述一致,即编辑器内支持部分 HTML 标签和内联样式,不支持class和id,支持的标签详见: https://developers.weixin.qq.com/miniprogram/dev/component/editor.html 。
不满足的标签会被忽略,<div>会被转行为<p>储存。
这也是为什么在做富文本解析时,仅仅用rich-text组件无法有效还原html内容,在解析内容的时候就需要将内容中的HTML标签转换成微信小程序所支持的标签。因此最好方式是引入市场封装好的富文本解析插件去解析html。
所以,开发者需要自行权衡在做富文本编辑开发时,是否使用微信自带的editor组件,或者参考腾讯文档小程序采用webview内嵌网页等方式去渲染。

小程序富文本编辑器editor初体验:( https://www.jianshu.com/p/a932639ba7a6 )
如果是微信原生开发,将demo组件中的相关dom元素标签和api换成微信原生即可。

以上是关于微信小程序实战之实现富文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序使用wxParse实现接入富文本编辑

微信小程序富文本编辑器怎么解析标签

微信小程序富文本编辑的图片超出

富文本编辑器内容在微信小程序中展示的解决方案

微信小程序 富文本编辑器 editor

uniapp微信小程序富文本换行符无效