我正在尝试使用ngrx-data-lab作为我的项目的示例。
这是我使用的项目的stackblitz。
我不能使用我正在使用的服务器的实际 url。该网址属于我的公司。但是发生的事情是服务器正在将随机生成的数据返回给应用程序。问题是商店中的实体没有被替换,而是被添加了。每次我刷新英雄页面时,服务器都会带来新数据并将其与旧数据连接起来。
在entity-store.module.ts 中,我将defaultDataServiceConfig根和 Hero url 更改为我的服务器。getAll() 有效,但正如我再次所说,它将数据连接到旧数据。
root: 'api', // default root path to the server's web api
// Optionally specify resource URLS for HTTP calls
entityHttpResourceUrls: {
// Case matters. Match the case of the entity name.
Hero: {
// You must specify the root as part of the resource URL.
entityResourceUrl: 'api/hero/',
collectionResourceUrl: 'api/heroes/'
}
},
如何让 getAll 替换旧数据而不是连接它?