浅析Angular中HttpClientModule模块有什么用?怎么用?

广告:宝塔服务器面板,一键全能部署及管理,送你10850元礼包,点我领取~~~

浅析Angular中HttpClientModule模块有什么用?怎么用?

本篇文章带大家了解一下Angular中的HttpClientModule模块,介绍一下HttpClientModule模块的使用方法,希望对大家有所帮助!

该模块用于发送 Http 请求,用于发送请求的方法都返回 Observable 对象。【相关教程推荐:《angular教程》】

1. 快速开始

引入 HttpClientModule 模块

// app.module.tsimport { httpClientModule } from '@angular/common/http';imports: [  httpClientModule]
登录后复制

注入 HttpClient 服务实例对象,用于发送请求

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}
登录后复制

发送请求

import { HttpClient } from "@angular/common/http"export class AppComponent implements OnInit {  constructor(private http: HttpClient) {}  ngOnInit() {    this.getUsers().subscribe(console.log)  }  getUsers() {    return this.http.get("https://jsonplaceholder.typicode.com/users")  }}
登录后复制

2. 请求方法

this.http.get(url [, options]);this.http.post(url, data [, options]);this.http.delete(url [, options]);this.http.put(url, data [, options]);
登录后复制
this.http.get<Post[]>('/getAllPosts')  .subscribe(response => console.log(response))
登录后复制

3. 请求参数

HttpParams

export declare class HttpParams {    constructor(options?: HttpParamsOptions);    has(param: string): boolean;    get(param: string): string | null;    getAll(param: string): string[] | null;    keys(): string[];    append(param: string, value: string): HttpParams;    set(param: string, value: string): HttpParams;    delete(param: string, value?: string): HttpParams;    toString(): string;}
登录后复制

HttpParamsOptions 接口

declare interface HttpParamsOptions {    fromString?: string;    fromObject?: {        [param: string]: string | ReadonlyArray<string>;    };    encoder?: HttpParameterCodec;}
登录后复制

使用示例

import { HttpParams } from '@angular/common/http';let params = new HttpParams({ fromObject: {name: "zhangsan", age: "20"}})params = params.append("sex", "male")let params = new HttpParams({ fromString: "name=zhangsan&age=20"})
登录后复制

4. 请求头

请求头字段的创建需要使用 HttpHeaders 类,在类实例对象下面有各种操作请求头的方法。

export declare class HttpHeaders {    constructor(headers?: string | {        [name: string]: string | string[];    });    has(name: string): boolean;    get(name: string): string | null;    keys(): string[];    getAll(name: string): string[] | null;    append(name: string, value: string | string[]): HttpHeaders;    set(name: string, value: string | string[]): HttpHeaders;    delete(name: string, value?: string | string[]): HttpHeaders;}
登录后复制
let headers = new HttpHeaders({ test: "Hello" })
登录后复制

5. 响应内容

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}0
登录后复制
// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}1
登录后复制

6. 拦截器

拦截器是 Angular 应用中全局捕获和修改 HTTP 请求和响应的方式。(TokenError

拦截器将只拦截使用 HttpClientModule 模块发出的请求。

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}2
登录后复制

6.1 请求拦截

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}3
登录后复制

6.2 响应拦截

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}4
登录后复制

6.3 拦截器注入

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}5
登录后复制

7. Angular Proxy

在项目的根目录下创建 proxy.conf.JSon 文件并加入如下代码

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}6
登录后复制

/api/:在应用中发出的以 /api 开头的请求走此代理

target:服务器端 URL

secure:如果服务器端 URL 的协议是 https,此项需要为 true

changeOrigin:如果服务器端不是 localhost, 此项需要为 true

指定 proxy 配置文件 (方式一)

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}7
登录后复制

指定 proxy 配置文件 (方式二)

// app.component.tsimport { HttpClient } from '@angular/common/http';export class AppComponent {  constructor(private http: HttpClient) {}}8
登录后复制

更多编程相关知识,请访问:编程入门!!

以上就是浅析Angular中HttpClientModule模块有什么用?怎么用?的详细内容,更多请关注9543建站博客其它相关文章!

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。
作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:BootStrap学习笔记之BootStrap常用组件介绍
下一篇:uniapp怎么实现app登陆后才能使用

发表评论

关闭广告
关闭广告