我们如何使用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);
});
});