I found the problem, and I'm ashamed...
My getAll()
method into car.service.ts
was pointing to "localhost"... I just changed it to an IP, and it worked....
getAll(): Observable<any> { return this.http.get('//10.10.10.10:8080/cars'); }
I found the problem, and I'm ashamed...
My getAll()
method into car.service.ts
was pointing to "localhost"... I just changed it to an IP, and it worked....
getAll(): Observable<any> { return this.http.get('//10.10.10.10:8080/cars'); }