获取后台数据-Http
生活随笔
收集整理的這篇文章主要介紹了
获取后台数据-Http
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
news
html
<button (click)="getDate()">click_it</button> <br> <ul><li *ngFor="let item of list">{{item.title}}</li> </ul>復制代碼ts
import { Component, OnInit } from '@angular/core'; import {HttpClient} from '@angular/common/http';@Component({selector: 'app-news',templateUrl: './news.component.html',styleUrls: ['./news.component.less'] }) export class NewsComponent implements OnInit {public list:any[] = [];constructor(public http:HttpClient) { }ngOnInit() {}getDate(){let api = "http://a.itying.com/api/productlist";this.http.get(api).subscribe((response:any)=>{this.list = response.result;console.log(this.list);});}}復制代碼app.module.ts
import { HttpClientModule } from '@angular/common/http';imports: [BrowserModule,HttpClientModule], 復制代碼轉載于:https://juejin.im/post/5ce4d291f265da1bc4142960
總結
以上是生活随笔為你收集整理的获取后台数据-Http的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 8年程序员210天没找到工作,小公司老板
- 下一篇: [THUPC2019]不等式/[51No