收藏
回答

editor组件editorCtx.getContentTxt 第一次获取为空? 第二次才获取到值

// 初始化富文本编辑器

    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);

    },

最后一次编辑于  2021-11-01
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容