我只是制作一个简单的应用来学习与redux的异步。我已经完成了所有工作,现在我只想在网页上显示实际状态。现在,我如何在渲染方法中实际访问商店的状态?
这是我的代码(一切都在一页,因为我只是在学习):
const initialState = {
fetching: false,
fetched: false,
items: [],
error: null
}
const reducer = (state=initialState, action) => {
switch (action.type) {
case "REQUEST_PENDING": {
return {...state, fetching: true};
}
case "REQUEST_FULFILLED": {
return {
...state,
fetching: false,
fetched: true,
items: action.payload
}
}
case "REQUEST_REJECTED": {
return {...state, fetching: false, error: action.payload}
}
default:
return state;
}
};
const middleware = applyMiddleware(promise(), thunk, logger());
const store = createStore(reducer, middleware);
store.dispatch({
type: "REQUEST",
payload: fetch('http://localhost:8000/list').then((res)=>res.json())
});
store.dispatch({
type: "REQUEST",
payload: fetch('http://localhost:8000/list').then((res)=>res.json())
});
render(
<Provider store={store}>
<div>
{ this.props.items.map((item) => <p> {item.title} </p> )}
</div>
</Provider>,
document.getElementById('app')
);
所以,在状态的render方法中,我想从商店中列出所有item.title
。
由于
答案 0 :(得分:39)
您应该创建单独的组件,它将监听状态更改并更新每个状态更改:
class Items extends Component {
constructor(props) {
super(props);
this.state = {
items: [],
};
store.subscribe(() => {
// When state will be updated(in our case, when items will be fetched),
// we will update local component state and force component to rerender
// with new data.
this.setState({
items: store.getState().items;
});
});
}
render() {
return (
<div>
{this.state.items.map((item) => <p> {item.title} </p> )}
</div>
);
}
};
render(<Items />, document.getElementById('app'));
答案 1 :(得分:30)
从connect
导入react-redux
并使用它将组件与状态connect(mapStates,mapDispatch)(component)
连接
import React from "react";
import { connect } from "react-redux";
const MyComponent = (props) => {
return (
<div>
<h1>{props.title}</h1>
</div>
);
}
}
最后,您需要将状态映射到道具以使用this.props
const mapStateToProps = state => {
return {
title: state.title
};
};
export default connect(mapStateToProps)(MyComponent);
只有您映射的州才能通过props
查看此答案:https://stackoverflow.com/a/36214059/4040563
进一步阅读:https://medium.com/@atomarranger/redux-mapstatetoprops-and-mapdispatchtoprops-shorthand-67d6cd78f132
答案 2 :(得分:11)
您需要使用Store.getState()
来获取商店的当前状态。
有关getState()
观看this短视频的详细信息。
答案 3 :(得分:5)
您想做的不仅仅是getState
。您想对商店中的更改做出反应。
如果您没有使用react-redux,您可以这样做:
function rerender() {
const state = store.getState();
render(
<div>
{ state.items.map((item) => <p> {item.title} </p> )}
</div>,
document.getElementById('app')
);
}
// subscribe to store
store.subscribe(rerender);
// do initial render
rerender();
// dispatch more actions and view will update
但更好的是使用react-redux。在这种情况下,您使用您提到的提供程序,但然后使用connect将您的组件连接到商店。
答案 4 :(得分:3)
所有答案都来自前钩时代。您应该使用 useSelector-hook 从 redux 中获取状态。
在您的 redux-reducer 文件中或您可以轻松导入的地方:
import { useSelector } from 'react-redux'
export function useEmployees() {
return useSelector((state) => state.employees)
}
在您的应用程序代码中:
const { employees } = useEmployees()
有关 redux-hooks 的更多信息:https://react-redux.js.org/api/hooks 以实现此目标。
答案 5 :(得分:1)
如果您想进行一些功能强大的调试,则可以订阅状态的每一次更改,然后暂停应用程序以查看发生了什么详细情况,如下所示。
store.jsstore.subscribe( () => {
console.log('state\n', store.getState());
debugger;
});
将其放在您执行createStore
的文件中。
要将state
对象从控制台复制到剪贴板,请按照以下步骤操作:
在Chrome控制台中右键单击一个对象,然后从上下文菜单中选择“存储为全局变量”。它将返回类似temp1的名称。
Chrome浏览器还具有copy()
方法,因此控制台中的copy(temp1)
应该将该对象复制到剪贴板。
https://stackoverflow.com/a/25140576
https://scottwhittaker.net/chrome-devtools/2016/02/29/chrome-devtools-copy-object.html
您可以像这样在json查看器中查看对象:http://jsonviewer.stack.hu/
您可以在此处比较两个json对象:http://www.jsondiff.com/