// 初始化富文本编辑器
onEditorReady:function(e){
wx.createSelectorQuery().select('#editor').context(function(res) {
that.editorCtx = res.context
}).exec()
},
//获取编辑器输入的内容
getContent: function(e) {
that.editorCtx.getContentTxt({
success: function(res) {
that.setData({
editorValue : res.text
})
}
})
},
uploadData:function(e){
this.getContent();
console.log("===文本内容===" + that.data.editorValue);
},
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。