I need query params in the url for my Single-Page Angular app. I simply need to access this data.
Currently, I am using $location.absUrl() to achieve this and running a simple JS split('?') on it which gives me the query.
Is there any better way to achieve this without getting into the complexities of router or state.
P.S. Picked up Angular today. Go easy!