小程序
小游戏
企业微信
微信支付
扫描小程序码分享
就是我有个A页面,里面用wx:for做了几个的navigator做跳转到B页面,因为B页面的样式是一样的,我不想做几个一样的B页面,但是当A页面点击不同的navigator时想跳转到B页面的内容也对应不一样,而且我B页面的内容是从云数据库里调出来的,这个要怎么实现?(我现在输出的内容只是云数据库里记录的第一个)
A页面:
B页面:
A页面代码:
B页面代码:
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
A页面去掉navigator,用<view catchtap="XXX" data-index="{{index}}" .....
A页面js里面
XXX:function(e){ const index = e.currentTarget.dataset.index; const params = encodeURIComponent(JSON.stringify(this.data.helpList[index]));//传参到B wx.navigateTo({ url: `pages/B?params=${params}` }); } B页面onLoad onLoad:function(query){ this.setData({item:query.params?JSON.parse(decodeURIComponent(query.params)):{}}); }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
A页面去掉navigator,用<view catchtap="XXX" data-index="{{index}}" .....
A页面js里面
XXX:function(e){ const index = e.currentTarget.dataset.index; const params = encodeURIComponent(JSON.stringify(this.data.helpList[index]));//传参到B wx.navigateTo({ url: `pages/B?params=${params}` }); } B页面onLoad onLoad:function(query){ this.setData({item:query.params?JSON.parse(decodeURIComponent(query.params)):{}}); }
https://developers.weixin.qq.com/s/iPY6hpmh7thf
sitemap 配置 | 微信开放文档
https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html