如题,我们的商品详情页面会读取 `type` 参数,但后续小程序直播商品跳转时,你们又在路径上加了 `type` 参数,覆盖了我们的参数,导致客户所有的直播商品无法访问!建议你们新版本添加新的路径参数命名时可以添加特殊标识,例如: `_type` 或 `live_type`之类,要考虑到会覆盖别人的参数呀!
我们的商品路径:
pages/product/product?type=3&productCode=xxxxx&storeCode=xxxxx&reffer=live
被直播插件乱加参数后变成:
pages/product/product.html?type=0&productCode=xxxxx&storeCode=xxxxx&reffer=live&room_id=11&openid=ouSrI5RLJmSHuPPgueYSE_rB95dQ&custom_params=
摘录的直播文档片段如下:
如果商家在后台自己生成的直播间小程序码,需要做以下配置:在跳转进入直播间的路径加上 type = 9 标识场景入口为小程序码: "plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=[直播房间id]&type=9"。
那看来只能你们自己改了?