この記事は主にWeChatミニプログラムのページジャンプとパラメータ転送の詳細な説明に関する関連情報を紹介し、簡単な例と実装レンダリングを添付していますので、必要な友人は参考にしてください
WeChatミニプログラムのページジャンプとパラメータ転送、WeChatの作成。ミニプログラム このプログラムは間違いなくそのような関数を使用します。ここでは、コードを実装するために学んだ情報を記録します。
私は WeChat ミニ プログラムを初めて使用するため、その構文や属性についてあまり知りません。あまり多くの箇所がない場合は、アドバイスをいただければ幸いです。今日は、WeChat アプレットでパラメータをジャンプして転送する方法について説明します。早速、コードに進みましょう。
実装された関数は、次のページにパラメータを渡すためのクリック関数をリストに追加することです。
コードは次のとおりです。 template is="buttonList" data ="{{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>
ここでは、以下のリストのクリックメソッドを追加するだけです
list js code
<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>
その中で
wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=前のページのパラメータ'})
はジャンプメソッドです、id は渡す必要があるパラメータです。パラメータが次の場合、動的パラメータ コードは次のとおりです:
listClick:function(event){ console.log(event); var p = event.currentTarget.id wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=上一页的参数'}) }
ここで、p は各行に設定された ID 値です
次のページは次のとおりです:
listClick:function(event){ console.log(event); var p = event.currentTarget.id wx.navigateTo({url:'/pages/xiangqing/xiangqing?id='+p}) }
そして、ページに表示されるコードは次のとおりです:
効果:
以上がこの記事の全内容です。皆様の学習に役立つことを願っています。 詳細については、PHP 中国語 Web サイトをご覧ください。
関連する推奨事項:
タブページ切り替えを実装するための WeChat アプレット開発
WeChat アプレット ページジャンプとデータ転送
以上がWeChat アプレット ページ ジャンプ パラメータ転送の概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。