项目场景:
进入页面初始化时,需要填入之前预填写的富文本内容,使用uniapp中editor组件setContents方法为富文本编辑器设置内容时,内容有时不时设置不成功,微信小程序同样适用
问题描述
使用uniapp中editor组件setContents方法为富文本编辑器设置内容时,在mounted时调用setContents方法,富文本内容有时设置不成功
文章来源:https://www.toymoban.com/news/detail-660399.html
样例代码:文章来源地址https://www.toymoban.com/news/detail-660399.html
<template>
<editor id="editor"></editor>
</template>
<script>
export default {
data() {
html: '<p>富文本测试</p>',
editorCtx : ''
},
mounted() {
let _this = this
// #ifdef APP-PLUS || H5 ||MP-WEIXIN
uni.createSelectorQuery().select('#editor').context((res) => {
_this.editorCtx = res.context //uni.createSelectorQuery获取editor 组件对应的 editorContext实例
}).exec()
_this.editorCtx.setContents({
'html': _this.html,
success: (res)=> {
console
到了这里,关于【uniapp】【微信小程序】富文本编辑器Editor之setContents初始化富文本内容失败(报错)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!