gpt4 book ai didi

react-native - 我如何从 Appjs 中的商店获取状态?

转载 作者:行者123 更新时间:2023-12-05 04:35:09 26 4
gpt4 key购买 nike

<分区>

我想在我的 App.js 中查看状态我是这样导入的

import configureStore from './src/configureStore'
let store = configureStore()

所以我在我的 App.js 中注入(inject)

<Provider store={store} theme={theme}>
{console.log('11111',store)}
<NavigationContainer>

只有在控制台我才能看到这个:{dispatch: ƒ, subscribe: ƒ, getState: ƒ, replaceReducer: ƒ, @@observable: ƒ}

如何查看状态?

顺便说一句:configureStore 是:

import {createStore, applyMiddleware} from 'redux';
import Reducers from './reducers'
import thunk from 'redux-thunk'

export default function configureStore () {
let store = createStore(Reducers, applyMiddleware(thunk))
return store
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com