微信小程序 页面跳转如何实现传值
程序员文章站
2023-11-13 16:17:46
微信小程序 页面跳转如何实现传值
(1)页面跳转如何传值(实现跳转到不同页面)
点击页面
wxml:加入自定义属性(data-category="{{category...
微信小程序 页面跳转如何实现传值
(1)页面跳转如何传值(实现跳转到不同页面)
点击页面
wxml:加入自定义属性(data-category="{{categorytitle}}")
<view class="more" catchtap="onmoretap" data-category="{{categorytitle}}">
js:在event中取出category值并加到url中
onmoretap:function(event){ var category=event.currenttarget.dateset.category; wx.navigateto({ url:"more-movie/more-movie?category="+category }) }
(2)小程序js中两个函数如何传值
page({ data:{ navigatetitle:" ", }, onload:function(options){ var category = options.category; this.data.navigatetitle = category }, onready : function(event){ wx.setnavigationbartitle({ title: this.data.navigatetitle }) } })
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!