跳轉(zhuǎn)功能實(shí)現(xiàn)有兩種绸罗,一種是在wxml中意推,一種是在js中;
一珊蟀、 js實(shí)現(xiàn):
wxml代碼:綁定函數(shù)
<button bindtap="jump_btn">
頁面跳轉(zhuǎn)
</button>
js代碼:
/* 頁面跳轉(zhuǎn) */
jump_btn:function(){
wx.redirectTo({
url: '/pages/user/user',
success: function(res){
// success
},
fail: function() {
// fail
console.log("fail");
},
complete: function() {
// complete
}
})
}