Error on deep links , (ionic 3).
Code:
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, private deeplinks: Deeplinks) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
this.deeplinks.route({
'/': {},
'/reset-password/:Id': MmresetpasswordPage
})
.subscribe(match => {
alert(JSON.stringify(match));
}, nomatch => {
alert(JSON.stringify(nomatch));
});
});
Anyone, any clues, any help, plz?
Thx in advance!