I am pretty new to AngularJS. My question is regarding Hiding paramters in URL.
For Example, i have an URL Like,
http://localhost:8080/CareerTurn/#/viewExamwiseStudentsReport?exam_id=2&eName=College%20Model%20Exam&mMarks=10&time=00:10
I want to show this like,
http://localhost:8080/CareerTurn/#/viewExamwiseStudentsReport
HTML:
<a href="#viewExamwiseStudentsReport?exam_id={{exa.model_exam_id}}&eName={{exa.model_exam_name}}&mMarks={{exa.model_exam_total_marks}}&time={{exa.model_exam_duration}}">
I don't want to show parameters in URL but i want to use them in my JS Controller,
How to achieve it?