createSelectorQuery的IOS兼容问题
微信小程序createSelectorQuery的exec方法在苹果手机上不执行回调函数问题?请问大家遇到过吗?
wx.createSelectorQuery().select(’#ceshi’).boundingClientRect(function(rect){
wx.showModal({
title: “弹窗标题”,
content: “弹窗”,
showCancel: false,
confirmText: “确定”
});
}).exec()
如上代码,苹果手机中,showModal放在回调函数里面不会执行,放在外面就可以执行。 安卓手机都和电脑开发工具调试都可以执行