各位,这里是 React 初学者。
所以基本上,我正在尝试使用 ReactuseContext
钩子获取更新的状态。
state
设置在放置调度的函数调用中,并且函数调用绑定到按钮 onClick 事件 。
调用 dispatch 的函数:
const fetchLocation = async (id: number) => {
const [, result] = await getLatestLocation()
dispatch({
type: "LOCATION_FETCHED",
payload: result
})
console.log(result) //this prints the latest/updated location even on button first click
}
减速器:
case "LOCATION_FETCHED": {
return {
...state,
location: payload,
}
}
组件中的函数调用:
const {
fetchLocation,
location
} = React.useContext(locationContext)
const [fetchingLocation, setFetchingLocation] = useState(false)
const getLocation = (id: number) => {
fetchLocation(id)
.then(() => {
setFetchingLocation(true)
})
.finally(() => {
setFetchingLocation(false)
console.log(location) //this prints nothing or empty on the first button click
})
}
按钮onClick函数绑定:
onClick={() => getLocation(143)}
我不确定发生了什么,第一次单击不会记录任何内容,但在第二次单击时,我得到了更新的位置状态。