50. Introduction to Ngrx data. Simplify entity store, effects & actions using Ngrx Data - Angular.

preview_player
Показать описание
Hi Friends
In this video, we will see the introduction to the Ngrx Data. Simplify the entity data, store, effects, and the actions using the Ngrx data in the angular application.

The code is deployed in my Github account.

If you like my video, please subscribe to my channel.

#Angular #ngrx #leelawebdev
Рекомендации по теме
Комментарии
Автор

Hi Leela
If we have @ngrx/data in place, will there be a use case where we would need to write actions, reducers, states explicitly in future.

inks
Автор

Which database to use with angular-SQL or Mongodb????

gauravsingh-qtzo
Автор

Hi Leela.
How can I feth data from JSON-SERVER API using ngrx data ?

This is my serice:
@Injectable()
export class ContactDataService extends DefaultDataService<any> {
constructor(http: HttpClient, httpUrlGenerator: HttpUrlGenerator) {
super('Contact', http, httpUrlGenerator);
}

getAll(): Observable<any> {
return this.http.get('/user')
}
}


But, instead of fetch 'http:localhost:3000/user, is fetching 'http:localhost:4200/user'

lspeixotodev
visit shbcf.ru