微信小程序頁(yè)面?zhèn)鞫鄠€(gè)參數(shù)跳轉(zhuǎn)頁(yè)面的實(shí)現(xiàn)方法
這里舉例跳轉(zhuǎn)兩個(gè)參數(shù) 傳遞多少個(gè)也可以
這里傳參數(shù) 我寫(xiě)作 data-item data-id 來(lái)綁定 同事加了點(diǎn)擊事件bindtap
在index.js
在 data 里我寫(xiě)的是假數(shù)據(jù)
在跳轉(zhuǎn)頁(yè)面的函數(shù)里傳e 后面定義的東西根據(jù)e來(lái)確定 可以在console打印
console.log(e)
這樣我們就拿到了 傳遞的數(shù)據(jù) 然后進(jìn)行定義等
這里跳轉(zhuǎn)詳情頁(yè)的函數(shù) wx.navigateTo 這是一種跳轉(zhuǎn)的方法 tabBar頁(yè)面要用wx.switchTab 路徑后面加上 jsonStr 等
在跳轉(zhuǎn)的詳情頁(yè)面的onload方法里面寫(xiě)
我們打印上個(gè)頁(yè)面?zhèn)魅氲臄?shù)據(jù)
打印出上個(gè)頁(yè)面?zhèn)魅氲臄?shù)據(jù) 在進(jìn)行that.setData 就行了
wxml:
<view class='fast-container'> <block wx:for="{{fast}}" wx:key="fast"> <view class='fast-row' bindtap='goIndexDetail' data-item="{{item}}" data-id="{{list}}"> <view class='row-tou'> <image class='img' src='{{item.image}}'></image> </view> <view class='row-content'> <view class='text'>{{item.name}}</view> <view class='content'>{{item.summary}}</view> </view> </view> </block> </view>
index.js
Page({ /** * 頁(yè)面的初始數(shù)據(jù) */ data: { fast:[ //假數(shù)據(jù) { 'name': 'red', 'image': '/img/123.jpg','summary':'我是紅色'}, { 'name': 'green', 'image': '/img/123.jpg', 'summary': '我是綠色' }, { 'name': 'blue', 'image': '/img/123.jpg', 'summary': '我是藍(lán)色' }, { 'name': 'orange', 'image': '/img/123.jpg', 'summary': '我是橘色' } ], list:[ //假數(shù)據(jù) {'content':'content-red'}, { 'content': 'content-green' }, { 'content': 'content-blue' }, { 'content': 'content-orange' } ] }, // ----跳轉(zhuǎn)詳情頁(yè) goIndexDetail : function (e) { // console.log('我要傳入的值e+++',e) let id = e.currentTarget.dataset.id; let item = e.currentTarget.dataset.item; console.log('我傳入的data-id+',id,'我傳入的data-item=',item) let str = JSON.stringify(id); let _str = JSON.stringify(item) wx.navigateTo({ url: '/pages/index/indexDetail/indexDetail?jsonStr=' + str + "&strr=" + _str, }) }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載 */ onLoad: function (options) { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面初次渲染完成 */ onReady: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面顯示 */ onShow: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面隱藏 */ onHide: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面卸載 */ onUnload: function () { }, /** * 頁(yè)面相關(guān)事件處理函數(shù)--監(jiān)聽(tīng)用戶下拉動(dòng)作 */ onPullDownRefresh: function () { }, /** * 頁(yè)面上拉觸底事件的處理函數(shù) */ onReachBottom: function () { }, /** * 用戶點(diǎn)擊右上角分享 */ onShareAppMessage: function () { } })
indexDetail.js
Page({ /** * 頁(yè)面的初始數(shù)據(jù) */ data: { detail: [], detailList, }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載 */ onLoad: function (options) { let that = this // console.log(options) // console.log(options.jsonStr) // console.log(options.strr) let item = JSON.parse(options.jsonStr) let id = JSON.parse(options.strr) console.log('上個(gè)頁(yè)面跳轉(zhuǎn)的data-item++', item) console.log('上個(gè)頁(yè)面跳轉(zhuǎn)的data-id++', id) that.setData({ detail: id, detailList: item }) }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面初次渲染完成 */ onReady: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面顯示 */ onShow: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面隱藏 */ onHide: function () { }, /** * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面卸載 */ onUnload: function () { }, /** * 頁(yè)面相關(guān)事件處理函數(shù)--監(jiān)聽(tīng)用戶下拉動(dòng)作 */ onPullDownRefresh: function () { }, /** * 頁(yè)面上拉觸底事件的處理函數(shù) */ onReachBottom: function () { }, /** * 用戶點(diǎn)擊右上角分享 */ onShareAppMessage: function () { } })
總結(jié)
以上所述是小編給大家介紹的微信小程序頁(yè)面?zhèn)鞫鄠€(gè)參數(shù)跳轉(zhuǎn)頁(yè)面的實(shí)現(xiàn)方法,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
相關(guān)文章
兩個(gè)listbox實(shí)現(xiàn)選項(xiàng)的添加刪除和搜索
listbox竟然可以實(shí)現(xiàn)選項(xiàng)的添加刪除和搜索不可思議吧,至于采用什么樣的方法實(shí)現(xiàn)的,具體代碼祥看本文嘍,或許可以幫助到你2013-03-03Axios+Spring?Boot實(shí)現(xiàn)文件上傳和下載
這篇文章主要為大家詳細(xì)介紹了Axios+Spring?Boot實(shí)現(xiàn)文件上傳和下載,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-08-08詳解webpack 多頁(yè)面/入口支持&公共組件單獨(dú)打包
這篇文章主要介紹了詳解webpack 多頁(yè)面/入口支持&公共組件單獨(dú)打包,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-06-06node.js Web應(yīng)用框架Express入門(mén)指南
這篇文章主要介紹了node.js Web應(yīng)用框架Express入門(mén)指南,從安裝到各種技術(shù)的應(yīng)用,都進(jìn)行了講解,是一篇不錯(cuò)的Express入門(mén)教程,需要的朋友可以參考下2014-05-05JS控制鼠標(biāo)拒絕點(diǎn)擊某一按鈕的實(shí)例
下面小編就為大家分享一篇JS控制鼠標(biāo)拒絕點(diǎn)擊某一按鈕的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2017-12-12微信小程序?qū)崿F(xiàn)搜索功能并跳轉(zhuǎn)搜索結(jié)果頁(yè)面
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)搜索功能并跳轉(zhuǎn)搜索結(jié)果頁(yè)面,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-05-05