欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在 Angular6 中使用 HTTP 请求服务端数据的步骤详解

程序员文章站 2022-06-25 10:57:53
第一步 准备好api接口地址, 例如 第二步 在根组件 app.components.ts 中引入 httpclientmodule 模块。 // app...

第一步

准备好api接口地址, 例如

第二步

在根组件 app.components.ts 中引入 httpclientmodule 模块。

// app.components.ts
import {httpclientmodule} from "@angular/common/http"; //引入httpclientmodule 模块
imports: [
 browsermodule,
 approutingmodule,
 httpclientmodule //声明http模块
],

第三步

在组件中使用http模块向远程服务器请求数据

1.引入http模块

// list.components.ts
import { httpclient } from "@angular/common/http" //这里是httpclient


2.在组件的构造函数中实例化 httpclient

constructor(private http:httpclient){}

3.创建用来接收数据的变量

public anylist:any

4.通过http的get方法请求数据

ngoninit() { //这个是初始化
 this.http.get("https://api.example.com/api/list")
   .subscribe(res=>{ this.anylist = res })
}
// get方法中接收的是一个接口文件的地址,它会接收接口传递过来的数据,并默认处理为json数据。
// subscribe方法是对get接收的数据进行处理。参数 res 就是接收过来的数据对象。然后把 res 对象赋值给anylist变量。

5:前台输出

// list.component.html

<ul *ngfor="let v of anylist"> 循环输出anylist对象数据
 <a routerlink="/post/{{v.id}}"> 这里的routerlink是angular的a链接形式
  <img src="{{v.thumb}}" alt=""> 这里的v.thumb是调用anylist对象的每条数据的thumb缩略图
  <h3>{{v.name}}</h3>
 </a>
</ul>

打开前台页面,就可以看到输出的数据信息了。

总结

以上所述是小编给大家介绍的在 angular6 中使用 http 请求服务端数据的步骤详解,希望对大家有所帮助