I have a detail page that has url setup something like this
url: '/product/:idProduct'
And this page doesn't get cached by default, but the page before (product listing) it is, so I'm guessing it is related with "unique" url based on the product id.
So when I open a product, that controller is always reloaded, is there something I'm doing wrong or this is how ionic handles the cache? As I'm getting that product information from online, I want to avoid doing the request everytime user opens that product, any way cache can be turned on on that type of pages?
thanks
d