wx.switchTab() 路径后面是不能传递参数的我们要用到全局的 globalData 来实现
普通界面
// 普通页面非 tabBar 页面
<template
>
<view
>
<!-- 点击按钮跳转到 tabBar 页面并传递参数 --
>
<button @tap
='index'>跳转
</button
>
</view
>
</template
>
全局配置
globalData
= {
// 数据
data:
[]
}
// 在页面中调用此方法传递参数
add
(val
) {
// 把接收到的值保存到全局数据中
this.globalData.data
= val
}
在页面中调用全局方法传递数据
this.
$parent.函数
(要传递的数据
)
在要使用的页面就可以使用了
// 获取全局数据
this.
$parent.globalData.data