微信小程序——解决wx.switchTab: url 不支持 queryString

我对小程序了解不多,甚至前端水平还停留在jquery那个层面。话不多说,先看看出了什么问题?

问题描述:

这个小程序是某商城的小程序,发现首页自定义一些菜单导航过去都是错误的。例如本来想要跳转到“热门商品”页去(pages/goods/index/index?ishot=1),但怎么弄都只能跳转到pages/goods/index/index(query参数丢失了),并产生一条警告:“wx.switchTab: url 不支持 queryString”。百度了好一会:都是“先存储到全局js中,再到目标页onShow时再进行处理” blog.csdn.net/qq_29644709…

但我记忆中看过其他小程序是支持带querystring的导航,于是我分析了源码,确实没找到相关的代码实现,正当失望的时候,突然发现导航里有一个pages/goods/index/index, 我猜想 这里定义了(无querystring,所以其他地方就不能用了),我尝试将pages/goods/index/index 修改为 pages/category/index/index后,问题得到解决。

#app.json导航部分
"tabBar": {
       "color": "#999999",
       "selectedColor": "#ff5555",
       "borderStyle": "white",
       "backgroundColor": "#f7f7fa",
       "list": [
           {
               "pagePath": "pages/index/index",
               "text": "首页",
               "iconPath": "static/images/tabbar/icon-1.png",
               "selectedIconPath": "static/images/tabbar/icon-1-active.png"
           },
           {
               "pagePath": "pages/category/index/index",
               "text": "全部分类",
               "iconPath": "static/images/tabbar/icon-2.png",
               "selectedIconPath": "static/images/tabbar/icon-2-active.png"
           },
           {
               "pagePath": "pages/member/cart/index",
               "text": "购物车",
               "iconPath": "static/images/tabbar/icon-4.png",
               "selectedIconPath": "static/images/tabbar/icon-4-active.png"
           },
           {
               "pagePath": "pages/member/index/index",
               "text": "会员中心",
               "iconPath": "static/images/tabbar/icon-5.png",
               "selectedIconPath": "static/images/tabbar/icon-5-active.png"
           }
       ]
   }
复制代码

你可能感兴趣的:(微信小程序——解决wx.switchTab: url 不支持 queryString)