收藏
回答

跳转页面参数丢失问题

wx.navigateTo({

    url: `/pages/hotel-detail/hotel-detail?url=https://www.baidu.com/?tn=62095104_26_oem_dg`,

})

通过跳转页面,在hotel-detail页面onload拿到的options是{url: 'https://www.baidu.com'}这样的,没法拿到tn=62095104_26_oem_dg参数


回答关注问题邀请回答
收藏

2 个回答

  • 再见,电脑崽
    再见,电脑崽
    2019-04-08
    wx.navigateTo({
        url: '/pages/hotel-detail/hotel-detail?url=' + encodeURIComponent('https://www.baidu.com/?tn=62095104_26_oem_dg')
    })


    onLoad: function (options) {
        let url = decodeURIComponent(options.url)
        console.log(url)
    }


    2019-04-08
    有用 1
    回复 1
    • 土豪不壕
      土豪不壕
      2019-04-08

      感谢

      2019-04-08
      回复
  • 管凯旋
    管凯旋
    2019-04-08

    多个参数不是应该用&连接吗


    2019-04-08
    有用
    回复 3
登录 后发表内容