应用跳转——Ionic1篇

2019-08-27  本文已影响0人  V1tas

需求

开发环境

分析

对方app跳转至我方app

customurlscheme

基于cordova-plugin-customurlscheme插件实现

但是实现了该方法后,发现依旧无法接收到相应的参数,github搜了一波发现遇到该问题的也不在少数,但都未解决Github插件地址
所以该插件只适合应用间的跳转,不适合传递参数
但在查询解决方法的同时也看到另外一种实现跳转的插件deeplink。

deepLink

基于ionic-plugin-deeplinks实现

cordova plugin add ionic-plugin-deeplinks --variable URL_SCHEME=xxxscheme--variable DEEPLINK_SCHEME=https --variable DEEPLINK_HOST=xxx.cn --variable ANDROID_PATH_PREFIX=/
参数 说明
URL_SCHEME 外部启动当前app的url scheme
DEEPLINK_SCHEME the scheme to use for universal/app links. Defaults to ‘https’ in 1.0.13. 99% of the time you’ll use https here as iOS and Android require SSL for app links domains.
DEEPLINK_HOST 该插件响应的域名,按照示例,外部访问时链接必须以xxxscheme://xxx.cn/开头,才会被当前插件匹配
ANDROID_PATH_PREFIX 可选参数,更多信息
    <platform name="ios">
      ...
        <config-file parent="com.apple.developer.associated-domains" target="*-Debug.plist">
            <array>
                <string>applinks:xxx.cn</string>
            </array>
        </config-file>
        <config-file parent="com.apple.developer.associated-domains" target="*-Release.plist">
            <array>
                <string>applinks:xxx.cn</string>
            </array>
        </config-file>
    </platform>
    1. 以上配置会接受url为 xxxscheme://xxx.cn/product?arg0=value0&arg1=value1…链接的信息,并进行处理。

      需要注意的是路由的路径中不要在末尾添加/,否则容易造成android可以正常匹配处理,ios不能匹配的问题。

我方app跳转至对方app

这个就非常简单了,只需跳到对方app,传对应的参数,其他的让对方处理就好了。。。

var scheme;
// 不同的平台实现方式是不同的
if (ionic.Platform.isAndroid()) {
    //第三方应用的包名
    scheme = 'com.xxxxx.xxx.xx';
    appAvailability.check(scheme, function () {
        //配置跳转
        var sApp = startApp.set({
            "component": ["com.xxxxx.xxx.xx", "com.xxxxx.xxx.xx.business.basic.ui.WelcomeActivity"]
        }, {
            //跳转时传递的参数
            "loginid": appUser.loginid,
            "password": appUser.password
        });
        sApp.start(function () {
        }, function (error) {
            console.log(error);
        });
    }, function () {
        toastService.showShortCenter("请安装xxxAPP");
    });
} else {
    // ios
    scheme = 'xxxscheme://';
    appAvailability.check(scheme,
        function () {
            var sApp = startApp.set("xxxscheme://" + appUser.loginid + "-" + appUser.password);
            sApp.start(function () {
            }, function (error) {
                console.log(error);
            });
        }, function () {
            toastService.showShortCenter("请安装xxxAPP");
        });
}
上一篇 下一篇

猜你喜欢

热点阅读