- 报告一个bug:生命周期onShow
https://developers.weixin.qq.com/miniprogram/dev/api/base/app/app-event/wx.onAppShow.html App( { onShow( options ) { console.log( 'APP Show:', options ); } } [图片] App onShow 事件中, 无法获取页面的URL的query值。 注:页面为小商店的商品详情页,分享给别的用户,用户从分享页直接进去,无法获取的路径中的query值。 [图片]
2021-10-03 - 标准交易组件(商品详情组件)自定义店铺/首页按钮,参数传递不过去
自定义店铺/首页按钮 因小商店的商品详情等页面中,有跳转到店铺及首页的按钮,组件提供了自定义跳转的方式。 const miniShopPlugin = requirePlugin('mini-shop-plugin'); miniShopPlugin.initHomePath('your home page path'); // 比如'/pages/index/index' 在上面方法的使用中,我们用了 miniShopPlugin.initHomePath('pages/find/detail?from=${productUrl}'); // 比如'/pages/index/index' 我们希望把商品页面的productUrl传过去, 如'plugin-private://wx34345ae5855f892d/pages/productDetail/productDetail?productId=${productId}' 从而获取商品信息,在返回去的页面好直接展示与此商品相关的信息, 但是好像无法实现, 请问有什么别的办法吗?
2021-09-15