小程序开发系统内的一些值可以直接设置到properties上,使用value初始值设置入口 组件.js: properties: { miniMargin:{ type:Array, value:[wx.getMenuButtonBoundingClientRect().left, wx.getMenuButtonBoundingClientRect().top+3] }, } 组件.wxml <view style="width:{{miniMargin[0]}}px;margin-top:{{miniMargin[1]}}px;">
小程序可以直接修改properties吗小程序直接修改properties(父组件传的值)是推荐的吗?
2021-03-27提示没发现数据
wx.setBackgroundFetchToken预拉去数据成功,但是获取不到?wx.setBackgroundFetchToken({ token: '123456789', }) [图片] 数据与拉取成功,但是wx.getBackgroundFetchData里面没有数据 wx.getBackgroundFetchData({ fetchType: 'periodic', success(res) { console.log("1=====",res.fetchedData) // 缓存数据 console.log("2=====",res.timeStamp) // 客户端拿到缓存数据的时间戳 console.log("3=====",res.path) // 页面路径 console.log("4=====",res.query) // query 参数 console.log("5=====",res.scene) // 场景值 } }) fail(res){ console.log("6===== 失败",res.errMsg) }, 报错:getBackgroundFetchData:fail getBackgroundFetchData:fail data not found
2020-06-23借楼问题:😁😭 为什么在开发环境模拟器上运行使用stopPullDownRefresh可以做到静默更新数据,在真实手机上却还是在更新数据时自动向下滑动 if (res.confirm) { console.log('用户确定删除操作'+e.currentTarget.id) const db=wx.cloud.database(); db.collection('userinfo').doc(e.currentTarget.id).remove({ success: function() { wx.startPullDownRefresh({ complete: (res) => { wx.showToast({ title: '删除成功!', }) } }) wx.stopPullDownRefresh() }
wx.stopPullDownRefresh();无法停止,请告诉我怎么停下来![图片] 这是什么情况,就一直跑根本停不下来啊.... 真机调试一样的效果,就是一直跑。wx.stopPullDownRefresh()无效???
2020-06-22请问为什么出现这种错误呀? [图片] [图片]
为啥我在使用本地调试的时候,系统总是报错,说NODE moduleS未安装?[图片]
2020-06-11