收藏
回答

iphone 3.4.10基础库 editor无法初始化

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 Bug 微信iOS客户端 8.0.49 3.4.10

使用的是taro框架的vue版本
<editor
          placeholder="请输入"
          id="editor"
          @ready="onEditorReady"
          @statusChange="onStatusChange"
        >
js部分:
    onEditorReady() {
      console.log("富文本编辑器初始化")
      wx.createSelectorQuery()
        .select("#editor")
        .context(res => {
          this.editorCtx = res.context;
          if(this.draftEditId){
            this.getDraftDetail()
          }
        })
        .exec();
    }
在ios客户端3.4.10版本基础库会出上图片上的问题,开发者工具(Windows 10)也会报错,报错如下:

回答关注问题邀请回答
收藏

1 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    10-21

    你好,麻烦提供出现问题的具体机型、更新下微信版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    10-21
    有用
    回复
登录 后发表内容