You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2022. It is now read-only.
I need my application to change URL when some page is opened. There is a strange behavior of navController push method. If I pass page as string then URL is changed, but If I pass page as View Object then URL is not changed:
Original issue by @ildar-icoosoft on 2018-04-17T11:09:41Z
I need my application to change URL when some page is opened. There is a strange behavior of navController push method. If I pass page as string then URL is changed, but If I pass page as View Object then URL is not changed:
this.navCtrl.push('Page1') // URL: http://localhost/#/page1
this.navCtrl.push(Page1) // URL: http://localhost/
Why does it happen?
The text was updated successfully, but these errors were encountered: