Redux loses state when navigating to another page
问题 I am building a web application using React and Redux. Redux works when I set the state on that page and then reaccess it through a statement like this.props.book.bookTitle , however, when I navigate to another page, redux loses it's state and defaults to the initialState. Here is my code: bookDuck.js: const BOOK_SELECT = "book/SELECT"; const BOOK_DESELECT = "book/DESELECT"; const initialState = { _id: "", bookTitle: "", bookCover: "", bookAuthors: [], bookDescription: "" }; export default