- 微信小程序直播组件?分享之后的直播间。点击左上角箭头不能返回。
1.从直播列表进入直播间。使用wx.navigateTo({url:* })。做跳转 2.进入直播间后,分享直播链接给好友A 3.好友A通过直播链接进入后。点击左上角箭头< 没反应。(期望,点击箭头<可以返回到直播列表页。) 期望可以提供某一事件可以监听到,或者提供API的回调函数。
2021-12-13 - 'triggerEvent' of undefined ? 不执行
使用自定义<Child>组件 <parent> <Child isShow="{{isShow}}" bind:myEvent="onMyEnvent></Child> </parent> 在<Child>中 <view><button bindtap="handleDelete"/></view> methods:{ handleDelete(){ let that=this wx.showToast({ title: '操作成功', success:function(){ console.log('11111111111111111', ) that.triggerEvent('myevent',{isShow:false}) // Cannot read property 'triggerEvent' of undefined // 或者不执行 } }) } }
2021-02-04 - setStorageSync 在B页面存储一条对象 在A取出这条对象添加到A页面的数组中?
setStorageSync 在B页面存储一条对象 .... var item={user:'123',name:'李四'} wx.setStorageSync('item',item) ... 在A页面取出这条对象添加并到A页面的数组中, ..... var list =[] var item=wx.getStorageSync('item')||'' if(item){ list.push(item) } .... 返回B页面继续存储一条新的对象, ... var item={user:'456',name:'张三'} wx.setStorageSync('item',item) ... 在回到A页面取出这条对象添加到上次操作的数组中, ... var item=wx.getStorageSync('item')||'' if(item){ list.push(item) } ... 结果 数组长度不变,第一次添加到数组中的数据被第二次添加的数据替换了 ... list=[ {user:'456',name:'张三'} ] ... 问题 怎么实现 添加而不是替换
2020-12-06