首頁 > 微信小程式 > 小程式開發 > 微信小程式 頁面跳轉傳參詳解

微信小程式 頁面跳轉傳參詳解

高洛峰
發布: 2017-02-18 11:39:31
原創
1909 人瀏覽過

這篇文章主要介紹了微信小程式頁面跳轉傳參詳解的相關資料,並附簡單實例,和實現效果圖,需要的朋友可以參考下

 微信小程式頁面跳轉傳參,做微信小程式必定會用的這樣的功能,這裡就記錄下本人學習實作程式碼資料。

剛接觸微信小程序,多裡面的語法和屬性還不怎麼聊解,如有不多的地方希望各位大神多多指教。今天來說下微信小程式怎麼跳轉傳參,話不多說直接上程式碼。

實現的功能是給列表增加點擊功能傳參到下一頁;

    微信小程序 页面跳转传参详解

代碼如下:

List

{{item}}"/> 

為模版程式碼如下


<import src="../WXtemplate/headerTemplate.wxml"/> 
<view> 
  <!--滚动图--> 
  <view> 
   <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoPlay}}" interval="{{intervalTime}}" duration="{{Time}}"> 
    <block wx:for="{{imageURl}}"> 
      <swiper-item> 
         <image src="{{item}}" class="imagePX"></image> 
      </swiper-item> 
    </block> 
  </swiper> 
  </view> 
  <!--功能按钮--> 
  <view class="section-bg"> 
    <block wx:for="{{buttonNum}}"> 
     <!--模版--> 
      <template is="buttonList" data="{{item}}"/> 
      <!--<view class="section-item"> 
     <image class="section-img" src="{{item.image}}"></image> 
      <text class="section-text">{{item.text}}</text>  
    </view>--> 
    </block> 
  </view> 
  <!--资讯列表--> 
  <view> 
    <block wx:for="{{listNum}}"> 
      <template is="newList" data="{{item,index}}"/> 
    </block> 
     
  </view> 
 
 
 </view>
登入後複製


這裡只為下面的列表增加了點擊方法

wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=上一頁的參數'}) 


為跳轉方法,id為需要傳遞的參數如果參數為動態參數代碼如下: 

為跳轉方法,id為需要傳遞的參數如果參數為動態參數代碼如下: 


<template name="buttonList"> 
   <view class="section-item"> 
     <image class="section-img" src="{{item.image}}" bindtap="buttonClick"></image> 
      <text class="section-text">{{item.text}}</text>  
    </view> 
</template> 
 
<!--list--> 
<template name="newList"> 
   <view class="section-list" bindtap="listClick" id="{{index}}"> 
    <view> 
      <image class="list-img" src="{{item.image}}"></image> 
    </view> 
 
     <view class="section-textt"> 
       <view class="title"><text>{{item.title}}</text></view> 
       <view class="subTitle"><text>{{item.subTitle}}</text></view> 
    </view> 
  </view> 
   
</template>
登入後複製

其中p為上面為每一行設定的id值


在下一頁取值代碼如下: 


listClick:function(event){ 
  console.log(event); 
  var p = event.currentTarget.id 
  
  wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=上一页的参数'}) 
 }
登入後複製

reee name="code" class="html">{{title}} 

最終實現效果:


感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

更多微信小程式 頁面跳轉傳參詳解相關文章請關注PHP中文網!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板