Angular 6 Tutorial 35: Getting Data from Redux Store

preview_player
Показать описание
This tutorial shows you how to get back data from redux store implemented in Angular 6

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

please continue this video series!!
don't stop!! this is very useful

yalairfan
Автор

It would be sweet if you created a different branch for each video in your repo. This way, we can look at your code whenever we get stuck on a certain part while we follow along.

darrylbrian
Автор

hi, very nice video. i have a doubt, i print the state in console log but its print undefined at the same time i print the this.store.select(appReducer) i able to see reducermanager -> reducers -> appReducer. how can i resolve this

sathishKumar-sxwh
Автор

You have to manually unsubscribe to the observable in this case right? Nice tutorials btw.

gwapster
Автор

Can you make tutorial on file upload using angular and mongodb... it would be appreciated

mukeshphulwani
Автор

please make the next video in this series.

shubhamsharma
Автор

I'm looking for the next video too on how to set data in redux:
this.store.dispatch({ type: 'ACTION_LOGIN' })

1. go to a component other than header....
2. make a button execute this code:
```
this.store.dispatch({ type: 'ACTION_LOGIN' })
```
3. don't forget to import Store and pass to constructor. import the const 'ACTION_LOGIN' too.

ThinkoCapo