适用于浏览器的离子深层链接

时间:2019-01-17 09:21:15

标签: ionic-framework ionic3 deep-linking deeplink

我们如何使用ionic 3在浏览器中使用深度链接。我已经安装了必需的插件,它们在真实设备上运行良好,但是如何为浏览器平台添加深度链接。我应该参考的任何特定链接,或者必须遵循哪些步骤才能实现。

    this.platform.ready().then(() => {

        this.deeplinks.routeWithNavController(this.nav, {
            '/auth/password/reset/:authToken': this.deeplinkPage
        })
        .subscribe((match) => {
            //console.log('Successfully routed', match);
        }, (nomatch) => {
            //console.warn('Unmatched Route', nomatch);
        });
    });

0 个答案:

没有答案