2021-04-17

uniapp记录

uniapp路由的两种跳转

1.@tap事件跳转

methods: {
            openinfo(e) {
                console.log(e)
                var newsid = e.currentTarget.dataset.newsid ;    
                uni.navigateTo({
                    url: '../info/info?newsid='+newsid,
                    success: res => {},
                    fail: () => {},
                    complete: () => {}
                });
            }
        }

2.navigator 标签

<navigator url="../hello/hello" open-type="navigate">
     <view class="struct">
         I am {{student.age}} yeas old </br>
         I have skills such as {{student.skill[0]}},{{student.skill[1]}}
     </view>
</navigator>

uniapp路由跳转问题

uni.reLaunch({object})

关闭所有页面,打开到应用内的某个页面

Url 必填项 需要跳转的应用内页面路径,可以携带参数,如果跳转的是tabBar页面则不可以带参数

Success 成功回调方法

Fail 失败回调方法

Complete 接口调用结束后的回调方法

举例

触发跳转方法
uni.reLaunch({
url:'test?id=1',
success:(res)=>{
},
fail:(res)=>{},
complete:(res)=>{}
})
跳转到test页面接收参数
onLoad:function(msg){
console.log(msg.id)
}
在App.vue 里面
onLaunch:function(option){
console.log(option)
}

uni.navigateTo 保留当前页面,跳转到应用内的某个页面,使用uni.navigateBack可以返回到原页面。 页面之间来回跳转回最多存储10次就跳转不动了

uni.redirectTo 关闭当前页面,跳转到应用内的某个页面。 用于频繁的来回跳转页面

uni.reLaunch关闭所有页面,打开到应用内的某个页面

uni.switchTab 跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面。

uni.navigateBack 关闭当前页面,返回上一页面或多级页面。可通过 getCurrentPages() 获取当前的页面栈,决定需要返回几层。

生命周期

应用的生命周期

onLaunch 主要用于获取小程序是通过什么方式进入的

在App.vue 里面
onLaunch:function(option){
console.log(option)
}

onShow 进入小程序

onHide离开小程序

页面的生命周期

onLoad执行一次

onShow执行多次

onReady 执行一次

onHide执行多次

组件的生命周期

beforeCreate

create

beforeMount 常用挂载之前

`mounted 常用 挂载完成可以在这发送ajax请求

beforeDestory

destoryed

路由与页面跳转

uni.navigateTo 保留当前页面,跳转到应用内的某个页面,使用 uni.navigateBack可以返回到原页面。 页面之间来回跳转回最多存储10次就跳转不动了 uni.redirectTo 关闭当前页面,跳转到应用内的某个页面。 用于频繁的来回跳转页面
uni.reLaunch关闭所有页面,打开到应用内的某个页面
uni.switchTab 跳转到 tabBar 页面, 并关闭其他所有非 tabBar 页面。
uni.navigateBack 关闭当前页面,返回上一页面或多级页面。可通过 getCurrentPages() 获取当前的页面栈,决定需要返回几层。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值