ahmed_sa Ответов: 1

Как отобразить количество записей в таблицах с помощью angular 7 ?


problem

How to display count of records on tables using angular 7 ?

I work on SQL server 2012 and asp.net core 2.2

I make web API on .net core 2.2 return count of records on table

meaning function API return only one value as integer

my question

How to display count of items on angular 7 ?

localhost:8089/api/countitems

on apiservice.ts

How to receive count from link below

ocalhost:8089/api/countitems

on itemsComponent.ts

How to call service here and receive count

itemsComponent.html

how to display count here on div or label


Что я уже пробовал:

export class AppComponent implements OnInit  {

  constructor() {
    
 }
 
 ngOnInit(){
  // how to call count here then display on html component
  }
}

1 Ответов

Рейтинг:
1

phil.o

SELECT COUNT([Id]) AS 'Count' FROM [TheTable];


ahmed_sa

нет мне это не нужно мне это нужно на angular 7 что я делаю чтобы получить значение count
мой API возвращает номер как 100
как получить на angular 7 и отобразить на экране component.html

phil.o

Вам следует поискать учебник по angular 7. Это форум быстрых ответов, он не предназначен для того, чтобы мы писали полный учебник исключительно на основе расплывчатых требований.
угловые 7 учебник