I have an array of cities with their name and url .
$scope.cities = [{'name':'LKO','url': 'http://sm.com'},{'name':'LK1O','url': 'http://sm1.com'}]
Now I need to make request to the url present in the city.. One after another as response of one request arrives.
I know this is possible using promises. But, I'm not able to get the exact solution.