Hi the forum. Help me for a little trouble please.
this.deeplinks.routeWithNavController(this.nav, {
‘/panier’: PanierPage,
‘/boutique/:idboutique’: ProduitboutiquePage
}).subscribe(match => {
console.log(‘Successfully matched route’, match);
}, nomatch => {
console.error(‘Got a deeplink that didn’t match’, nomatch);
});
I generated a link to open “PanierPage” and it worked. here is the link
href=‘achatacredit://panier’
I generated a second link to open the “ProduitboutiquePage”. With this link I integrated a parameter to which I assigned a value. Here is the link
href=‘achatacredit://boutique/2’
when I click on the link Boutique to access the store page it does not work.
Help me please