厉害
小商店,商品列表应该怎么实现?通过后端接口吗?说明: 1、使用了小程序商店,接入了插件; 2、展示商品详情、购物袋、订单、订单详情; 问题: 商品详情的入口应该是商品列表,前端并没有直接可以 使用的能力。 是通过后端获取商品列表后返回前端吗? 亲测可用: 店铺首页:plugin-private://wx34345ae5855f892d/pages/home/home 店铺首页的商品列表:plugin-private://wx34345ae5855f892d/pages/homeContent/homeContent 商品类目列表:plugin-private://wx34345ae5855f892d/pages/category/category 单个类目下的商品列表:plugin-private://wx34345ae5855f892d/pages/categoryProductList/categoryProductList?productId=spuid&categoryName=名称 使用方式: 1、组件引用 { "navigationBarTitleText": "我的", "usingComponents": { "wx-mini-category": "plugin-private://wx34345ae5855f892d/pages/category/category", } } 2、直接跳转页面: wx.navigateTo({ url: 'plugin-private://wx34345ae5855f892d/pages/categoryProductList/categoryProductList?productId=id1,id2,id3&categoryName=分类中文名', });
2023-09-11解决啦吗 老哥
模拟器使用路线规划插件时会提示marker id should be a number?let plugin = requirePlugin('routePlan'); let key ='***'; //使用在腾讯位置服务申请的key let referer ='***'; //调用插件的小程序的名称 let startPoint = JSON.stringify({ //起点 'name':'中国技术交易大厦', 'latitude': 39.984154, 'longitude': 116.30749 }); let endPoint = JSON.stringify({ //终点 'name':'北京西站', 'latitude': 39.894806, 'longitude': 116.321592 }); wx.navigateTo({ url:'plugin://routePlan/route-plan?key=' + key +'&referer=' + referer +'&endPoint=' + endPoint +'&startPoint=' + startPoint });[图片] 用了官方的代码还是会报错,大佬们救救我
2023-09-07