So my website is PHP for the backend and AngularJS for the frontend. Weird that I'm finding that I have to use PHP on the frontend to achieve some things like getting URL paramters. Explanation below;
Given the following URLs for example
http://www.test.co.uk/search-menu/1/cinamon-soho
http://www.test.co.uk/search-restaurant?location=asokoro&day=today&time=1100
My Angular code in the same page requires the parameters location, day etc. Right now I'm having to use the line below to pass them to angular
$scope.l = <?php echo json_encode($_GET['location']); ?>;
My questions are;
- Is there a way to access these variables using just Angular so I can take PHP out of the equation?
- If question 1 is possible, how can I do the same if I then decide to move my Angular code away from that page to a dedicated
.jspage that I reference using
<script src="http://www.test.co.uk/js/main.js"></script>
FYI
The website was not built from the ground up using AngularJS. Angular was later introduced to the frontend heavy lifting PHP was doing so the website is not a SPA. There's no angular routing in place.
Thanks.
window.location?$location.searchmethod. See AngularJS $location API Reference -- search. <br>