Push same page on nav stack with different parameter value

In my app I need to show same page with different values controlled by index parameter. So i need to do something like this:

this.navCtrl.push(this, { index: this.index++ });

Is there a way I can succeed this?

Did you had success on that implementation?
I have the same problem now.

I have the same problem, too.

I think you do something in the cunstructor wich you woud do later again. So put that stuff in a function and call it fron the cunstractor and later when you need it again.

Yes, you’re right. Thanks.