跳转功能实现有两种,一种是在wxml中,一种是在js中;
一、 js实现:
wxml代码:绑定函数
<button bindtap="jump_btn">
页面跳转
</button>
js代码:
/* 页面跳转 */
jump_btn:function(){
wx.redirectTo({
url: '/pages/user/user',
success: function(res){
// success
},
fail: function() {
// fail
console.log("fail");
},
complete: function() {
// complete
}
})
}
网友评论