| | |
| | | import { Component, OnInit } from '@angular/core'; |
| | | import { Component, OnInit } from "@angular/core"; |
| | | import { _HttpClient } from "@delon/theme"; |
| | | |
| | | @Component({ |
| | | selector: 'app-home-page', |
| | | templateUrl: './home-page.component.html', |
| | | styleUrls: ['./home-page.component.less'] |
| | | selector: "app-home-page", |
| | | templateUrl: "./home-page.component.html", |
| | | styleUrls: ["./home-page.component.less"] |
| | | }) |
| | | export class HomePageComponent implements OnInit { |
| | | |
| | | constructor() { } |
| | | constructor( |
| | | private http:_HttpClient |
| | | ) {} |
| | | |
| | | ngOnInit() { |
| | | this.http.get('user-context').subscribe( |
| | | res => { |
| | | console.log(res); |
| | | } |
| | | ); |
| | | } |
| | | |
| | | } |