Advertisement
cianetech

http.ts

Jun 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import { Component } from '@angular/core';
  2. import { IonicPage, NavController, NavParams } from 'ionic-angular';
  3. import { HttpClient } from '@angular/common/http';
  4.  
  5. @IonicPage()
  6. @Component({
  7. selector: 'page-http-test',
  8. templateUrl: 'http-test.html',
  9. })
  10. export class HttpTestPage {
  11.  
  12. constructor(public navCtrl: NavController, public navParams: NavParams, private http: HttpClient) {
  13. }
  14.  
  15. ionViewDidLoad() {
  16. console.log('ionViewDidLoad HttpTestPage');
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement