import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-home',
templateUrl: './home.page.html',
styleUrls: ['./home.page.scss'],
})
export class HomePage implements OnInit {
constructor(private http: HttpClient) { }
ngOnInit() {
this.load_data();
}
load_data(){
this.http.get<any[]>('http://local.omgrk.com/api/employees_').subscribe(d => console.log(d));
}
}
No comments:
Post a Comment