This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/boards/boards.component.ts
Simple_Not 76f505af06
All checks were successful
continuous-integration/drone/push Build is passing
docker
2022-10-20 02:59:49 +10:00

33 lines
719 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { ApiChatService } from '../api-chat.service';
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-boards',
templateUrl: `./boards.component.html`,
styleUrls: [`./boards.component.css`]
})
export class BoardsComponent implements OnInit {
command: string = "";
response: any;
constructor(private http: HttpClient) {
console.log("Boards opened");
}
listPosts() {
console.log("Получаю данные...");
this.http.get('http://api.vdk2ch.ru:5000/List')
.subscribe((response)=> {
this.response = response;
console.log(this.response);
})
}
ngOnInit(): void {
}
}