- 订阅消息发送后跳转页面显示页面不存在?
[图片] [图片] 当前目录
2023-09-24 - 数组直接打印有数据,设置到缓存后打印却为空?
//js文件中全局申明了一个变量 var category=[] var categoryObj={} //云函数获取商品列表 getGoodsList(){ wx.cloud.callFunction({ name:"category", data:{ type:"get" } }).then(res=>{ category=res.result.data //一些数据处理 categoryObj[category_name]=[] //以产品分类为key把商品列表写成对象形式 //一些数据处理 categoryObj[category_name][good.id]=good //最后的格式就是{category1:[{id1:good1},{id2:good2}]} } } this.updateQty();//更新商品的数量 }) }, updateQty(){ //这里打印出来是有数据的 console.log(categoryObj) wx.setStorageSync('categoryObj', categoryObj) //这里就没了 console.log(wx.getStorageSync('categoryObj')) //页面也没有数据 this.setData({ categoryObj:categoryObj }) }, 另外还有就是明明打印出来里面有值,但是数组长度是0 [图片]
2023-07-21 - 创建云函数的最佳实践?
刚开始接触云函数,发现增删改查就要创建四个函数,如果数据库里内容多那就会创建很多云函数,感觉不太对,想问下大家平时是怎么安排这些函数的?
2023-05-04 - 页面同一个位置放了两个按钮的话,点击那个位置会触发哪个按钮的绑定事件?
比如下面代码,父元素绑定了一个tap事件,子元素的template里也绑定了另一个事件,每次点击都会触发父元素事件而不是子元素的事件 <view class="right-item" wx:for="{{goodsList}}" wx:key="id" bindtap="onRightItemTap" > <block> <image class="img" mode="aspectFit" src="{{item.goodsPic}}"></image> <view class="info-wrapper"> <template is="goods-actions" data="{{id:item.id,qty:item.qty}}"/> </view> </block>
2023-03-03 - wx.switchTab参数为undefined错误?
methods:{ switchTab(e){ console.log(typeof(e.currentTarget.dataset.path)) const url=e.currentTarget.dataset.path; wx.switchTab({url}); } 想实现tab点击跳转,如果直接写wx.switchTab(e.currentTarget.dataset.path)会报错url不能为undefined,但打印类型确实是String,如果像上面这样写就没问题,这是为什么?
2022-08-06