первый компонент.ts:
Код: Выделить всё
@Component({
selector: 'app-cat',
templateUrl: './first.component.html',
styleUrls: ['./first.component.css']
})
export class firstComponent extends Lifecycle {
this.http.get('/name',{responseType:"json"}).subscribe(
response => {
console.log("data :"+response);
console.log("data stringify:"+JSON.stringify(response));
});
}
Подробнее здесь: https://stackoverflow.com/questions/517 ... -angular-6
Мобильная версия