首页 > 其他 > 详细

如何区分router.push跳转快应用的来源渠道

时间:2021-04-22 15:12:18      阅读:16      评论:0      收藏:0      [点我收藏+]
现象描述:

从一个快应用A跳转到B快应用的B1页面, A可能是一个快应用,也可能是负一屏的卡片,如何区分来自哪个呢?

解决方法:
快应用和卡片都是通过router.push接口来跳转其他快应用的,使用Deeplink中的hap链接来实现的,同时hap链接里是可以携带参数,在跳过去时加个flag参数,在B快应用的B1页面获取参数,根据参数值判断来源是负一屏的卡片还是快应用A,然后根据需要做相应的逻辑处理。快应用使用this.xx获取跳转携带的参数。

示例代码:

A快应用代码:

<template>
    <div>
        <text class="button" onclick="router">测试</text>
    </div>
</template>
<style>
    .button{
        width: 100%;
        height: 200px;
        color: #000000;
        font-size: 80px;
    }
</style>
<script>
    import router from ‘@system.router‘;
    module.exports = {
        data: {

        },
        onInit() {
            this.$page.setTitleBar({ text: ‘‘ })
        },
        router(){
            console.log("router");
            router.push({
                uri: ‘hap://app/com.huawei.ceshi/Test?body=quickapp‘,//快应用参数
            })
        }
    }
</script>

卡片相关代码:

<template>
    <div>
        <text class="button" onclick="router">测试</text>
    </div>
</template>
<style>
    .button{
        width: 100%;
        height: 200px;
        color: #000000;
        font-size: 80px;
    }
</style>
<script>
    import router from ‘@system.router‘;
    module.exports = {
        data: {

        },
        onInit() {
            this.$page.setTitleBar({ text: ‘‘ })
        },
        router(){
            console.log("router");
            router.push({
                uri: ‘hap://app/com.huawei.ceshi/Test?body=card‘,//卡片参数
            })
        }
    }
</script>

B快应用代码:

在onInit()生命周期方法中获取参数值,如下代码中定义了accept变量接收参数值,比如在onBackPress()方法中根据来源实现不同的业务逻辑。

<template>
    <div style="flex-direction: column;">
        <text class="text">下面是接收的数据</text>
        <text class="text" style="background-color: black">{{accept}}</text>
    </div>
</template>
<style>
    .text {
        height: 80px;
        font-size: 50px;
        color: red;
        width: 500px;
    }
</style>
<script>
    import router from ‘@system.router‘;
    module.exports = {
        data: {
            accept: ""
        },
        onInit() {
            this.$page.setTitleBar({ text: ‘‘ })
            this.accept = this.body;
        },
        onBackPress() {
            if (this.accept === "quickapp") {
                console.log("this is quickapp");
            } else if (this.accept === "quickapp") {
                console.log("this is crad");
            }else{
                router.back()
            }
            return true;
        }
    }
</script>

欲了解更多详情,请参阅:

快应用开发指导文档:https://developer.huawei.com/consumer/cn/doc/development/quickApp-Guides/quickapp-whitepaper

快应用路由接口介绍:https://developer.huawei.com/consumer/cn/doc/development/quickApp-References/quickapp-api-router

原文链接:https://developer.huawei.com/consumer/cn/forum/topic/0204422879753860623?fid=18
原作者:Mayism

如何区分router.push跳转快应用的来源渠道

原文:https://blog.51cto.com/u_14772288/2724191

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!