I want to navigate to some page in angular2 along with data, while doing so data is coming in URL. Is there a way to pass data without showing it in URL?
I'm using the following code:
this._router.navigate('test',{hugeJsonData: JSON.stringify(bigJson)});