在小程序中需要跳转的时候将上一个页面的参数带到下一个页面,一般需要那个参数就拼接传递那个参数,但是有时候需要将整个对象传递过去就需要用到json 处理了
1:hyxyxxgs页面
<navigator hover-class="none" :url="'./hyxyxxgsDetail/hyxyxxgsDetail?type=black&data='+encodeURIComponent(JSON.stringify(item))" v-for="(item,index) in blackData" :key="index">
上述跳转到hyxyxxgsDetail页面,将数组的item所有内容传递到下一个页面
2:hyxyxxgsDetail页面
onLoad(option){
let dataList=JSON.parse(decodeURIComponent(option.data))
console.log(dataList)//打印结果见下图
}
如果只需要item 中的几个值就可以直接拼接传递,如下
3:hyxyxxgs页面
<navigator hover-class="none" :url="'./hyxyxxgsDetail/hyxyxxgsDetail?type=black'+'&cjrq='+item.cjrq+'&cyrybh='+item.cyrybh" v-for="(item,index) in blackData" :key="index">
4:hyxyxxgsDetail页面
onLoad(option){
console.log(option)//打印结果如下
}