How to solve the problem of crashing the application when redirecting a page in Ionic (v3)

0

I'm developing an Ionic (v3) application that contains a list of products in Home, but when I click on a product it does not run anything and hangs the screen. The problem is that I can not get the error because it is in Ionic View.

Does anyone have an idea of what it can be?

Javascript code:

goTo(page, params) {
    this.nav.push(page, {params: params});
}
...

HTML code:

<div text-left class="product-item" tappable (click)="goTo('ProductPage', y)">...
    
asked by anonymous 09.05.2018 / 18:43

0 answers