收藏
回答

editor初始化时设置默认值没反应且无任何显示?

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

1 个回答

  • Vinlic
    Vinlic
    2021-02-17

    请提供代码片段方便调试

    2021-02-17
    有用 1
    回复 2
    • 0.0
      0.0
      2021-02-17
      onEditorReady() {
          const that = this
          db.collection("edit_article").get().then(a=>{
              that.data.content= a.data[0].text
            console.log("222",that.data.content)
            c = that.data.content
          })
          wx.createSelectorQuery().select('#editor').context(function (res) {
            that.editorCtx = res.context
            that.editorCtx.setContents({
                html: that.data.content,   //这里就是设置默认值的地方(html 后面给什么就显示什么)
                                            //that.data.content 是我存在 data 里面的数据
                                            //注意是 this 赋值的 that,如果用 this 就把上面的 function 改成箭头函数
              });
          }).exec()
        },
      2021-02-17
      回复
    • Vinlic
      Vinlic
      2021-02-17回复0.0
      请使用开发工具的新建代码片段,那个能够清晰了解整个逻辑
      2021-02-17
      回复
登录 后发表内容
问题标签