// 当富文本编辑器挂载完成时执行onEditorReady() {let that = this// 修改时,反显数据this.createSelectorQuery().select("#editor").context((res) => {res.context.setContents({html: that.data.formData.content,});}).exec();}, 效果为 // 富文本编辑器内容变化时,同步更新表单字段内容 formData....
表单内容较多时,通常需要输入换行的数据,此处便需要用到富文本编辑器 富文本编辑器的渲染 <editor class="editorStyle" style="height:auto" id="editor" placeholder="请输入内容" bindready="onEditorReady" bindinput="contentChange"> </editor> 1. 2. .editorStyle { border: 1rpx solid rgb(235, 229,...
简介: 【微信小程序-原生开发】富文本编辑器 editor 的使用教程 表单内容较多时,通常需要输入换行的数据,此处便需要用到富文本编辑器 富文本编辑器的渲染 <editor class="editorStyle" style="height:auto" id="editor" placeholder="请输入内容" bindready="onEditorReady" bindinput="contentChange"> </editor>...
简介: 【微信小程序-原生开发】富文本编辑器 editor 的使用教程 表单内容较多时,通常需要输入换行的数据,此处便需要用到富文本编辑器 富文本编辑器的渲染 <editor class="editorStyle" style="height:auto" id="editor" placeholder="请输入内容" bindready="onEditorReady" bindinput="contentChange"> </editor>...