• Angular2 HttpClient (一)


      @angular/common/http 中的 HttpClient 类为 Angular 应用程序提供了一个简化的 API 来实现 HTTP 客户端功能。它基于浏览器提供的 XMLHttpRequest 接口。 HttpClient 带来的其它优点包括:可测试性、强类型的请求和响应对象、发起请求与接收响应时的拦截器支持,以及更好的、基于可观察(Observable)对象的 API 以及流式错误处理机制。

    准备工作

      1、要想使用 HttpClient,就要先导入 Angular 的 HttpClientModule。大多数应用都会在根模块 AppModule中导入它。

    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule } from '@angular/core';
    import { HttpClientModule} from '@angular/common/http';
    
    import { AppComponent } from './app.component';
    
    @NgModule({
      declarations: [
        AppComponent,
      ],
      imports: [
        BrowserModule,
        // import HttpClientModule after BrowserModule.
        HttpClientModule
      ],
      providers: [],
      bootstrap: [AppComponent]
    })
    export class AppModule { }

      2、在 AppModule 中导入 HttpClientModule 之后,将HttpClient注入到应用类中。

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

    获取 JSON 数据

      config.json文件:

    {
      "heroesUrl": "api/heroes",
      "textfile": "assets/textfile.txt"
    }

      1、通过 HttpClient 的 get() 方法获取Json数据,如下:

    configUrl = 'assets/config.json';
    
    getConfig() {
      return this.http.get(this.configUrl);
    }

      2、将 服务service 注入到组件中,并调用其 getConfig 方法。

    
    
    config: Config;
    showConfig() {
      this.configService.getConfig()
        .subscribe((data: Config) => this.config = {
            heroesUrl: data['heroesUrl'],
            textfile:  data['textfile']
        });
    }
  • 相关阅读:
    iOS UITextField限制输入长度
    SpringBoot 统一异常处理
    idea+springboot+freemarker热部署
    JAVA 实现链表
    mysql 添加新用户 赋予权限
    Spring MVC 集成 Redis集群
    js获取当前日期时间及其它操作
    MySQL Error Codes MYSQL的错误代码
    js数组 删除元素
    JS table form 序列化提交
  • 原文地址:https://www.cnblogs.com/AndyChen2015/p/9679522.html
Copyright © 2020-2023  润新知