admin管理员组

文章数量:1345109

createStore is @deprecated so I'm trying to replace with configurationStore, i think the post data from my cluster is not showing because of that

import React from 'react';
import ReactDom from 'react-dom/client';
import { Provider } from 'react-redux';
import {createStore, applyMiddleware, pose } from 'redux';
import thunk from 'redux-thunk';

import reducers from "./reducers";

import App from './App'

const store = createStore(reducers, (pose(applyMiddleware(thunk))))
const root = ReactDom.createRoot(document.getElementById("root"));

root.render(
   <Provider store={store}>
       <App />
   </Provider>
);

And im trying to do it like this:

import React from 'react';
import ReactDom from 'react-dom/client';
import { Provider } from 'react-redux';
import { applyMiddleware, pose } from 'redux';
import thunk from 'redux-thunk';
import { configureStore } from '@reduxjs/toolkit'

import reducers from "./reducers";

import App from './App'

const store = configureStore(reducers, (pose(applyMiddleware(thunk))))
const root = ReactDom.createRoot(document.getElementById("root"));


root.render(
    <Provider store={store}>
        <App />
    </Provider>
);

Of Course it didn't work i'm trying to figure out how it could be

createStore is @deprecated so I'm trying to replace with configurationStore, i think the post data from my cluster is not showing because of that

import React from 'react';
import ReactDom from 'react-dom/client';
import { Provider } from 'react-redux';
import {createStore, applyMiddleware, pose } from 'redux';
import thunk from 'redux-thunk';

import reducers from "./reducers";

import App from './App'

const store = createStore(reducers, (pose(applyMiddleware(thunk))))
const root = ReactDom.createRoot(document.getElementById("root"));

root.render(
   <Provider store={store}>
       <App />
   </Provider>
);

And im trying to do it like this:

import React from 'react';
import ReactDom from 'react-dom/client';
import { Provider } from 'react-redux';
import { applyMiddleware, pose } from 'redux';
import thunk from 'redux-thunk';
import { configureStore } from '@reduxjs/toolkit'

import reducers from "./reducers";

import App from './App'

const store = configureStore(reducers, (pose(applyMiddleware(thunk))))
const root = ReactDom.createRoot(document.getElementById("root"));


root.render(
    <Provider store={store}>
        <App />
    </Provider>
);

Of Course it didn't work i'm trying to figure out how it could be

Share Improve this question edited Jan 23 at 1:56 Penny Liu 17.6k5 gold badges86 silver badges108 bronze badges asked Jun 2, 2022 at 16:59 ManP22ManP22 752 silver badges8 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

You would do

const store = configureStore({ reducer: reducers })

The thunk middleware is active automatically. pose and applyMiddleware are not needed any more. So is bineReducers.

If you had

const reducers = bineReducers({
  a: reducerA,
  b: reducerB
})

you could also just instead do

const store = configureStore({ 
  reducer: {
    a: reducerA,
    b: reducerB
  }
})

If you were still using createStore, that means that you were generally using an outdated style of Redux that is about 4x times the code of modern Redux.

Modern Redux does not use switch..case reducer, ACTION_TYPE constants, immutable reducer logic, hand-written action creators or connect & mapStateToProps. You might have been misled by an outdated tutorial.

I would highly remend you to follow the official Redux tutorial which will leave you with knowledge of modern Redux and in the end much cleaner and easy to maintain code.

本文标签: javascriptcreateStore is deprecated so im trying to replace with configurationStoreStack Overflow