代码如下:
this.editorContext.setContents(
{
html:'1111',
success:function(e){
alert(11);
console.log(e.html);
}
}
);
代码如下:
this.editorContext.setContents(
{
html:'1111',
success:function(e){
alert(11);
console.log(e.html);
}
}
);
1 个回复
6***@qq.com
onEditorReady() {
uni.createSelectorQuery()
.in(this)
.select('#editor')
.context(res => {
this.editorCtx = res.context || '';
// 设置富文本
this.editorCtx.setContents({
html: this.editorHtmlContext,
success: res => {
console.log('editor...setContents')
}
})
})
.exec();
},
虽然这样可以初始化,但还是出现问题,this.editorCtx.setContents调用的时候,不能保证this.editorCtx = res.context || ''一定拿到了EditorContext对象,也就是不能保证每次都初始化成功。不太清楚具体原因