angular 9 +. net ядро ​​3 net :: ERR_CONNECTION_REFUSED - PullRequest
0 голосов
/ 29 апреля 2020

i, я пытаюсь написать простое приложение CRUD и получаю ошибку: net :: ERR_CONNECTION_REFUSED пытается вызвать сервер:

 getPersons(): Observable<Array<Person>> {

     return this.httpService.get<Array<Person>>(this.serverUrl + '/GetAllPersons',{headers: this.Headers});

Headers: any = { withCredentials: true, responseType: 'json', headers: { 'Content-Type': 'application/json' } };

точка останова на сервере не останавливается в :

[HttpGet]
        [Route("GetAllPersons")]
        public IEnumerable<Person> GetAllPersons()
        {
            try
            {
                IEnumerable<Person> personArray = this.GetAllRecordsFromDB();
                return personArray;
            }
            catch (Exception)
            {
                throw new Exception();
            }
        }

спасибо

...