我在内存数据库中关注了Angular 2的英雄之旅教程.然后我创建了一个Spring后端来提供数据,并希望将Angular2与Spring的Rest API集成.
在Tour of Hero中,我只更改了hero.service.ts中的一行代码:
/* private heroesUrl = 'app/heroes'; */
private heroesUrl = 'http://localhost:8080/api/hero/all';
我更改的链接是Spring服务端点,如果我在浏览器中键入链接,它将返回JSON数据:[{“id”:1,“name”:“test”}].
但是,我在英雄之旅中遇到错误:
EXCEPTION: Uncaught (in promise): Response with status: 404 Not Found for URL: null
它看起来像localhost的spring端点:在localhost:3000上运行的Angular应用程序找不到8080.可能是什么问题?
最佳答案
原文链接:https://www.f2er.com/spring/431362.html