switchTab中的url不能拼接变量,下面的url拼接变量是不行的
wx.switchTab({
url: '/pages/category/category?id='+id,
})
正确的做法如下:
第一步定义:
在app.js中定义一个变量,这是一个全局变量
//app.js
App({
this.$categoryId="" //分类商品的Id
})
第二步在需要传值的页面操作:
//index.js 在需要的函数中调用就可
gotoCategory:function(options){
//根据传过来的分类Id传过去
console.log("分类的Id=====", options.currentTarget.dataset.index)
// 把获取商品分类的Id赋值给全局的变量,我们想要在下一页获取参数,直接获取就行,注意不能把参数放在url中
app.$categoryId= options.currentTarget.dataset.index
console.log(" app.$categoryId", app.$categoryId)
// 普通页面跳转
console.log("options", options)
wx.switchTab({
url: '/pages/category/category',
})
}
第三步在需要参数的页面的操作:
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
//获取首页分类传过来的Id,这个需要在onShow中获取,在onLoad获取不到
let categoryId = app.$categoryId
console.log("传过来的分类Id===", categoryId)
},
网友评论