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 badges1 Answer
Reset to default 10You 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
版权声明:本文标题:javascript - createStore is @deprecated so im trying to replace with configurationStore - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784088a2538365.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论