收藏
回答

微信小程序执行EditorContext.clear 后会插入一个空行

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug EditorContext 客户端 7.0.4 2.7.1

- 当前 Bug 的表现(可附上截图)


微信小程序+EditorContext.clear 后会插入一个空行




- 预期表现


- 复现路径


- 提供一个最简复现 Demo

onEditorReady() {

const that = this

wx.createSelectorQuery().select('#editor').context(function(res) {

that.editorCtx = res.context

}).exec()

},

//执行两次以上此方法就会插入一个空行

insertText(){

this.editorCtx.clear({

success: function() {

that.editorCtx.insertText({

text: "aaaaaaaaaaaaaaaaaaaaa"

});

}

});

}


最后一次编辑于  2019-06-02
回答关注问题邀请回答
收藏

2 个回答

  • Samuel
    Samuel
    2020-05-18

    解决了吗?我现在用也还是这样

    2020-05-18
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2019-06-03

    你好,麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2019-06-03
    有用
    回复 1
    • Samuel
      Samuel
      2020-05-18
      解决了吗?我现在用也会出现空行
      2020-05-18
      回复
登录 后发表内容