2.onLaunch里获取不到getApp() 控制台"Cannot read property 'globalData' of undefined" 解决办法:将getApp()替换成this onLaunch:function(e){// 错误的写法getApp().globalData.uuid=this.getGuid()// 正确的写法this.globalData.uuid=this.getGuid()} 3.pages.json里有重复的path在小程序控制台会报错 解...
10 vue3中使用createSelectorQuery.in(this)获取元素的时候报错TypeError: Cannot read property ‘route’ of undefined的解决方法 此问题只有小程序才会出现,h5不会出现 /** * 获取dom节点的宽高位置信息 * 示例:uni.$yw.getDomClientRect('.yw-fixed-button') * @param {选择器字符串} select * @returns...
在settings 下新增 "checkSiteMap" : false 解决Cannot read property 'forceUpdate' of undefined 的错误 这个错误的原因非常简单,是因为我们没有为项目配置 appID 的原因,所以只需要完成 APPID 配置即可。 双击打开 manifest.json 找到- 【微信小程序配置】 在此处添加 APPID 即可5-9:热搜页面分析5-10:认识 .vue...
// Cannot read property 'forceUpdate' of undefined 界面报错 需要手动添加一个appId就正常了 let canvasName = this.canvasName; let ctx = uni.createCanvasContext(canvasName); this.ctx = ctx; var query = uni.createSelectorQuery(); query .select('.handCenter') .boundingClientRect(rect => { t...
解决Cannot read property 'forceUpdate' of undefined的错误 这个错误的原因非常简单,是因为我们没有为项目配置appID的原因,所以只需要完成APPID配置即可。 双击打开manifest.json 找到- 【微信小程序配置】 在此处添加APPID即可 5-9:热搜页面分析 5-10:认识 .vue 文件结构与 logo 图片展示 ...
uniapp获取元素距离顶部的距离 var that=this; const query = uni.createSelectorQuery().in(that); query.select('元素').boundingClientRect(data => { console.log(data) }).exec();