收藏
回答

EditorContext.getContents怎么查看获取的内容?

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 需求 客户端 7.0.3 2.6.6

this.editorCtx.getContents({

success:(res)=>{

console.log("succ:" + res);


},

fail:(res)=>{

console.log("fail:" + res);


}


});

上述res 返回  succ:[object Object]  res 的内容怎么查看?




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

4 个回答

  • 苦七
    苦七
    2020-12-08

    直接console.log("res",res); 不行?还非要 + 号干什么???

    2020-12-08
    有用
    回复
  • 渐行渐远
    渐行渐远
    2020-05-19

    低级错误,“1”+变量你说等于多少

    2020-05-19
    有用
    回复
  • ㄨ℉ωιFι℅`
    ㄨ℉ωιFι℅`
    2020-02-05

    2020-02-05
    有用
    回复 3
    • mmx
      mmx
      2020-02-10
      获取内容是异步的
      2020-02-10
      回复
    • Oyvn_Bilig
      Oyvn_Bilig
      2022-10-24
      这个怎么获取呢
      2022-10-24
      回复
    • Hue_Wang
      Hue_Wang
      2023-05-31
      同问,每次第一下获取这个内容都不成功
      2023-05-31
      回复
  • 是小白啊
    是小白啊
    2019-06-10

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

    2019-06-10
    有用
    回复 13
    • 是小白啊
      是小白啊
      2019-06-10回复!!

      代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)按照这个提供下

      2019-06-10
      回复
    • !!
      !!
      2019-06-10

      <form bindsubmit="formSubmit">

      <!-- <toast hidden="{{toastHidden}}" bindchange="onToastChanged">

             {{toastText}}

         </toast> -->


      <view class="text">请选择分类</view>


      <view class="text">标题</view>

      <input class="input" placeholder="input here" name="url"/>


      <view class="text">副标题</view>

      <input class="input" placeholder="input here" name="desc"/>


      <view class="text">内容</view>

      <input class="input" placeholder="input here" name="who"/>

      <view class="page-body">

      <view class='wrapper'>

      <view class='toolbar' bindtap="format">

      <i class="iconfont icon-zitijiacu {{formats.bold ? 'ql-active' : ''}}" data-name="bold"></i>

      <i class="iconfont icon-zitixieti {{formats.italic ? 'ql-active' : ''}}" data-name="italic"></i>

      <i class="iconfont icon-zitixiahuaxian {{formats.underline ? 'ql-active' : ''}}" data-name="underline"></i>

      <!-- <i class="iconfont icon-quanping"></i> -->

      <i class="iconfont icon-shanchu" bindtap="clear"></i>

      <i class="iconfont icon-direction-rtl {{formats.direction === 'rtl' ? 'ql-active' : ''}}" data-name="direction" data-value="rtl"></i>


      </view>


      <editor id="editor" class="ql-container" placeholder="{{placeholder}}" showImgSize showImgToolbar showImgResize bindstatuschange="onStatusChange"  read-only="{{readOnly}}" bindready="onEditorReady">

      </editor>


      </view>

      </view>


      <button class="button" type="primary" formType="submit">提交</button>

      </form>



      formSubmit(e) {

      console.log('form发生了submit事件,携带数据为:', e.detail.value)

      this.editorCtx.getContents({

      success: (res) => {

      console.log("succ:" + res);


      },

      fail:(res)=>{

      console.log("fail:" + res);


      }


      });

      console.log(ddd);


      },

      我就是想获取的editor里的内容,然后上传到服务器!





      2019-06-10
      回复
    • !!
      !!
      2019-06-10回复是小白啊

      https://developers.weixin.qq.com/s/1inaS1mO7u9H

      2019-06-10
      回复
    • !!
      !!
      2019-06-10回复是小白啊

      您在开始输入里,随便输入什么东西,然后点击提交 log是这个    succ:[object Object]  就是editor 这里的内容怎么显示?我不可能存储一个 object啊

      2019-06-10
      回复
    • !!
      !!
      2019-06-10回复是小白啊

      怎么样?代码片段不行吗?我就是想获取到editor 这里的内容 this.editorCtx.getContents 不知道怎么用的,你们写的方法案例,过于简单

      2019-06-10
      回复
    查看更多(8)
登录 后发表内容