I using angular 2 http class https://angular.io/docs/js/latest/api/http/index/Http-class.html for sending post and get request. Now, I want to use send requests synchronously. i.e. second request is send after response of first request. But no option is available for it in angular 2 documentation. So,
How can I send multiple requests synchronously?
In jquery ajax async option is available which handle this type of problem. I am searching for similar option in angular 2.