Which service is used for making ajax calls in Angular?

by dion.waelchi , in category: Technology , 3 years ago

Which service is used for making ajax calls in Angular?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by trycia.jones , 3 years ago

$http is used to make ajax calls to the server. Using $http service we can send request to the server and in return we get respond and data. We can carry out all the CRUD operations using get, post, put and delete methods of $http service.