我在内存数据库中关注了Angular 2的英雄之旅教程。然后我创建了一个Spring后端来提供数据,并希望将Angular2与Spring的Rest API集成。
在英雄之旅中,我只更改了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:8080
上运行的Angular应用程序找不到localhost:3000
的弹簧端点。可能是什么问题?
答案 0 :(得分:3)
这是前一段时间被问过的,但可能有人发现它很有用。
从package.json中删除以下依赖项:
"angular-in-memory-web-api": "~0.2.4",
将其从node_modules
目录中删除,删除所有InMemoryWebApiModule
以及InMemoryWebApiModule
和InMemoryDataService
相关代码。