Angular JavaScript

AngularによるWebアプリ開発⑧~APIを叩いてデータを取得する

この記事は約5分で読めます。

 

これまでのシリーズ記事

 

 

 

 

Angularでhttp通信機能を実装する

 

今回はAngularでhttp通信を行い、APIなどを使用してwebからデータをスクレイピングする処理を実装していきたいと思います。

 

Angularでのhttp通信の処理は「httpclient」というモジュールを使用することで可能です。httpclientはAngularから元からインストールされているので、$npm installは不要でapp.module.tsで読み込みを宣言するだけです。

 

 

# コンポーネントを作成する
$ ng generate component ngapi-sample

 

 

<app-routing.module.ts>

import { NgModule } from "@angular/core";
import { Routes, RouterModule } from "@angular/router";
~~~~
~~~~
import { NgapiSampleComponent } from "./ngapi-sample/ngapi-sample.component";//これを追加

const routes: Routes = [
  ~~~~
  ~~~~
  { path: "api-sample", component: NgapiSampleComponent },//これを追加
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule],
})
export class AppRoutingModule {}

 

 

<app.module.ts>

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http'; //これを追加!

@NgModule({
imports: [
BrowserModule,
~~~~
~~~~
HttpClientModule, //これを追加!
],
declarations: [
AppComponent,
],
bootstrap: [ AppComponent ]
})
export class AppModule {}

 

 

<ngapi-sample.component.ts>

import { Component, OnInit, Injectable } from "@angular/core";
import { HttpClient } from "@angular/common/http";
import { Observable, of, Subject } from "rxjs";

@Injectable({
  providedIn: "root",
})
class ApiData {
  data: string;
}

@Component({
  selector: "app-ngapi-sample",
  templateUrl: "./ngapi-sample.component.html",
  styleUrls: ["./ngapi-sample.component.css"],
})
export class NgapiSampleComponent implements OnInit {
  btcPrice: any = [];
  testData: any = new Subject();

  constructor(private http: HttpClient) {}

  ngOnInit() {
    this.getBtcData();
    setInterval(() => this.getBtcData(), 5000);
  }

  getBtcData() {
    this.http
      .get("https://public.bitbank.cc/btc_jpy/ticker")
      .subscribe((result: ApiData) => {
        this.btcPrice = result.data;
        console.log(this.btcPrice);
      });
  }
}

 

 

<ngapi-sample.component.html>

<p>現在のビットコイン価格は {{btcPrice.last }}円です</p>

 

 

「http://localhost:4200/api-sample」にアクセスすると以下のような画面が表示されます。

 

 

 

 

 

 

 

 

 


プログラミング・スクレイピングツール作成の相談を受け付けています!

クラウドワークス・ココナラ・MENTAなどでPython・SQL・GASなどのプログラミングに関する相談やツール作成などを承っております!

過去の案件事例:

  • Twitter・インスタグラムの自動化ツール作成
  • ウェブサイトのスクレイピングサポート
  • ダッシュボード・サイト作成
  • データエンジニア転職相談

これまでの案件例を見る

キャリア相談もお気軽に!文系学部卒からエンジニア・データサイエンティストへの転職経験をもとに、未経験者がどう進むべきかのアドバイスを提供します。


スポンサーリンク
/* プログラミング速報関連記事一覧表示 */
ミナピピンの研究室

コメント

タイトルとURLをコピーしました