angular httpclient implements HTTP client functions

php中世界最好的语言
Release: 2018-05-23 15:06:44
Original
1818 people have browsed it

This time I will bring you angular httpclient to implement the HTTP client function. What are theprecautionsfor angular httpclient to implement the HTTP client function. The following is a practical case, let's take a look.

Modern browsers support using two different APIs to make HTTP requests: XMLHttpRequestInterfaceand the fetch() API.

The HttpClient class in @angular/common/http provides a simplified API for Angular applications to implement HTTP client functionality.

1.Preparation

First import HttpClientModule in app.module.ts. As follows:

import { HttpClientModule } from '@angular/common/http'; @NgModule({ imports: [ HttpClientModule, ] }) export class AppModule {}
Copy after login

2. Introduce HttpClient into service.ts that requiresto referenceHttpClient, as follows:

import { HttpClient } from '@angular/common/http'; export class ConfigService { constructor(private http: HttpClient) { } }
Copy after login

##3. Request data

return this.http.get/post(url:'请求地址' , options: { headers: this.headers }) .toPromise() .then((data: any) => { return data; }) .catch((err) => { console.log(err); }); }
Copy after login

4. Introduce service into the corresponding component.ts file

##Data format:

{ "lists":[ {"title":"","pic":""}, {"title":"","pic":""} ] }
Copy after login

5. Call on the page

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Recommended reading:

How to use vue to register components


##How to use Vue.js calculated properties and listeners

The above is the detailed content of angular httpclient implements HTTP client functions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!