您的位置:首页 > 汽车 > 新车 > 中信建发公司简介_seo分析师招聘_百度怎么搜索图片_最新seo课程

中信建发公司简介_seo分析师招聘_百度怎么搜索图片_最新seo课程

2024/12/26 10:17:21 来源:https://blog.csdn.net/m0_73972962/article/details/144676566  浏览:    关键词:中信建发公司简介_seo分析师招聘_百度怎么搜索图片_最新seo课程
中信建发公司简介_seo分析师招聘_百度怎么搜索图片_最新seo课程

页面跳转基础

引言

        在微信小程序开发中,页面跳转和参数传递是常见的需求。本文将通过一个实际案例——“我的咖啡店”小程序,详细介绍如何在微信小程序中实现页面跳转和参数传递。

页面跳转基础

        在微信小程序中,页面跳转主要通过wx.navigateTowx.redirectTo两个API实现。wx.navigateTo用于跳转到新页面,并且可以返回;而wx.redirectTo则是关闭当前页面,跳转到应用内的某个页面。

1. 跳转到普通页面

mine.js中,我们定义了goIndex函数,用于跳转到index页面:

// pages/mine/mine.js
Page({goIndex() {wx.navigateTo({url: '../index/index',});},// 其他函数...
});

2. 跳转到tabBar页面

对于tabBar页面的跳转,我们使用wx.switchTab

// pages/mine/mine.js
Page({goHome() {wx.switchTab({url: '../home/home',});},// 其他函数...
});

带参数跳转

在某些情况下,我们需要在跳转页面时传递参数。这可以通过在URL后面添加查询字符串来实现。

3. 跳转页面并带参数

mine.js中,我们定义了goAA函数,用于跳转到AA页面并传递参数:

// pages/mine/mine.js
Page({goAA(event) {let a = event.currentTarget.dataset.a;console.log("event", a);wx.navigateTo({url: '../AA/AA?aa=' + a,});},// 其他函数...
});

获取传递的参数

在目标页面,我们可以通过onLoad函数的options参数来获取传递的参数。

4. 在跳转的页面中获取参数

AA.js中,我们定义了onLoad函数,用于获取传递的参数:

// pages/AA/AA.js
Page({onLoad(options) {console.log("options", options.aa);this.getxxx(options.aa);},getxxx(aa) {console.log("aa===", aa);}
});

结语

        通过上述步骤,我们成功在“我的咖啡店”小程序中实现了页面跳转和参数传递功能。用户可以在不同页面间跳转,并且可以传递必要的参数。如果你在实现过程中遇到问题,可能是由于路径错误或者参数传递不正确。请检查路径的合法性,并确保参数正确传递。希望这篇文章能帮助你在开发自己的微信小程序时,更好地实现页面跳转和参数传递功能。

完整代码

app.json

{"pages": ["pages/home/home","pages/index/index","pages/logs/logs","pages/order/order","pages/ordering/ordering","pages/mine/mine","pages/search/search","pages/AA/AA"],"window": {"navigationBarTextStyle": "black","navigationBarTitleText": "我的咖啡店","navigationBarBackgroundColor": "#ffffff"},"style": "v2","componentFramework": "glass-easel","sitemapLocation": "sitemap.json","lazyCodeLoading": "requiredComponents","tabBar": {"color": "#bfbfbf","selectedColor": "#8B7355","backgroundColor": "#ffffff","list": [{"pagePath": "pages/home/home","text": "首页","iconPath": "./image/home.png","selectedIconPath": "./image/home-active.png"},{"pagePath": "pages/order/order","text": "点餐","iconPath": "./image/order.png","selectedIconPath": "./image/order-active.png"},{"pagePath": "pages/ordering/ordering","text": "订单","iconPath": "./image/ordering.png","selectedIconPath": "./image/ordering-active.png"},{"pagePath": "pages/mine/mine","text": "我的","iconPath": "./image/mine.png","selectedIconPath": "./image/mine-active.png"}]},"usingComponents": {"van-search": "@vant/weapp/search/index","van-cell": "@vant/weapp/cell/index","van-cell-group": "@vant/weapp/cell-group/index"}
}

mine.wxml

<!-- pages/mine/mine.wxml -->
<view class="mine"><van-cell title="去Index" bind:click="goIndex" is-link /><van-cell title="去Home" bind:click="goHome" is-link /><van-cell title="去AA" bind:click="goAA" is-link />
</view>

mine.js

// pages/mine/mine.js
Page({// 1. 跳转到普通页面goIndex() {wx.navigateTo({url: '../index/index',});},// 2. 跳转到tabBar页面goHome() {wx.switchTab({url: '../home/home',});},// 3. 跳转页面 带参数goAA(event) {// 获取自定义属性a的值let a = event.currentTarget.dataset.a;console.log("event", a);wx.navigateTo({// 带参数的url怎么写?// 路径?参数名=值url: '../AA/AA?aa=' + a,});}
});

AA.js

// pages/AA/AA.js
Page({// 生命周期函数--监听页面加载onLoad(options) {console.log("options", options.aa);// 调用this.getxxx(options.aa);},// 获取参数getxxx(aa) {console.log("aa==>", aa);}
});

展示

我的页面

 去Index页面-普通页面

去Home页面-tabBar页面

 去AA页面-在跳转的页面中获取参数

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com