微信小程序页面传递参数

张开发
2026/6/26 19:37:11 15 分钟阅读
微信小程序页面传递参数
searchTicket(){const{tripType,fromCity,toCity,date,returnDateDisplay,departDate,returnDate,departDateWeekday,returnDateWeekday}this.data;// 跳转到船票列表页面传递查询参数wx.navigateTo({url:/pages/shipTicket/shipTicket?tripType${tripType}fromCity${fromCity}toCity${toCity}date${date||}departDate${departDate||}returnDate${returnDate||}departDateWeekday${departDateWeekday||}returnDateWeekday${returnDateWeekday||}});},//页面接受参数onLoad(options:any){// 获取导航栏高度constsystemInfowx.getSystemInfoSync();constnavBarHeightsystemInfo.statusBarHeight44;// 状态栏高度 导航栏高度// 接收首页传递的参数const{tripType,fromCity,toCity,date,departDate,returnDate,departDateWeekday,returnDateWeekday}options;

更多文章