Arun Mohan
Arun Mohan

Reputation: 211

Get complete data from redux persist store

How to Get complete data from redux persist store to take backup of store and store in my drive. Kindly help me to get the complete values in my store

I have tried by using store.getstate(). Can anyone guide my to get it

Upvotes: 0

Views: 488

Answers (1)

Yuankun
Yuankun

Reputation: 7803

Use subscribe to add a state change listener, and put your logic in it.

store.subscribe(() => {
  var state = store.getState();
  // Your logic
}); 

Upvotes: 1

Related Questions