javascript 离子HTTP GET

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 离子HTTP GET相关的知识,希望对你有一定的参考价值。

import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';

/*
  Generated class for the PokedexProvider provider.

  See https://angular.io/guide/dependency-injection for more info on providers
  and Angular DI.
*/
@Injectable()
export class AppService {

  constructor(public http: HttpClient) {
    
  }

  getBooks()
  {
    return this.http.get('http://booksapi.co/api/v2/book/2');
  }

}
title: any = 'List of books are represted in the bookstore';
  books: any = []; 
  constructor(private service:  AppService){
  }

  ngOnInit(){
    this.getBookDetails();
  }

  getBookDetails() {
    this.service.getBooks().subscribe(books => {
      this.books = books.json();
      console.log(this.books);
    });
  }

以上是关于javascript 离子HTTP GET的主要内容,如果未能解决你的问题,请参考以下文章

离子:this.http.get(...).map 不是函数

离子应用程序在另一个HTTP GET中使用HTTP GET崩溃

带有授权标头的离子 http 请求

离子区域搜索

离子读取本地 JSON 文件

角度 $http.get / restangular 调用失败