이 글은 주로 WeChat 미니 프로그램의 페이지 점프에 대한 자세한 설명에 대한 관련 정보를 소개하고 간단한 예제와 구현 렌더링을 첨부합니다. 필요한 친구는
WeChat 미니 프로그램 페이지 점프를 참조할 수 있습니다. 매개변수 전달은 위챗 미니 프로그램을 만들 때 반드시 사용해야 하는 기능입니다. 여기에는 코드를 구현하기 위해 배운 정보를 기록하겠습니다.
저는 WeChat 미니 프로그램을 처음 접해서 그 프로그램의 구문과 속성에 대해 잘 모릅니다. 만약 장소가 많지 않다면 조언을 해주셨으면 좋겠습니다. 오늘은 WeChat 애플릿에서 매개변수를 점프하고 전송하는 방법에 대해 이야기하겠습니다. 더 이상 고민하지 말고 바로 코드로 들어가겠습니다.
에서 구현한 기능은 목록에 클릭 기능을 추가하여 다음 페이지로 매개변수를 전달하는 것입니다. 🎜>
<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>
템플릿 코드는 다음과 같습니다
<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>
여기서는 아래 목록에 대한 클릭 방법만 추가합니다
목록 js 코드 클릭
listClick:function(event){ console.log(event); var p = event.currentTarget.id wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=上一页的参数'}) }
여기서
wx.navigateTo({url:'/pages/xiangqing /xiangqing?id=이전 페이지의 매개변수'})
listClick:function(event){
console.log(event);
var p = event.currentTarget.id
wx.navigateTo({url:'/pages/xiangqing/xiangqing?id='+p})
}
다음 페이지의 값 코드는 다음과 같습니다.
data:{ // text:"这是一个页面" title:'' }, onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 this.setData({ title:options.id })
다음과 같이 페이지에 코드를 표시합니다.
위 내용은 WeChat 애플릿 페이지 점프 및 매개 변수 통과에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!