onEditorReady() {
const that = this;
wx.createSelectorQuery().select('#editor').context(function (res) {
that.editorCtx = res.context;
res.context.setContents({
html: that.data.value
})
}).exec()
},
imageOnLoad: function(e) {
var that = this;
wx.createSelectorQuery().in(this).select(".classTaskDetail").boundingClientRect(function(e) {
if (e) {
that.setData({
height: e.height.toFixed(0)
});
}
}).exec();
},
请问下怎么才能正确获取,
这样写可以的呀
您好 我这边的ready函数没有触发 用的mpvue框架 ready触发方法放在methods里面 请问是啥原因呢
wx 换成 this
都2024年9月18号了,还解决不了吗??
我这还是一样啊
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
https://developers.weixin.qq.com/s/njG4hemo7q94
我也遇到这个问题了,解决了吗?