HTTP in Angular
HTTP is used to make requests to a server in an Angular application. Here is an example of an HTTP request in Angular:
import { HttpClient } from '@angular/common/http';
@Injectable({
providedIn: 'root',
})
export class UserService {
private apiUrl = 'https://api.example.com/users';
constructor(private http: HttpClient) {}
getUsers() {
return this.http.get(this.apiUrl);
}
}
This code sets up an HTTP request to get a list of users from an API.
No comments:
Post a Comment