1

各位,这里是 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)}

我不确定发生了什么,第一次单击不会记录任何内容,但在第二次单击时,我得到了更新的位置状态。

4

1 回答 1

1

正如评论所说,调度是异步工作的。所以如果你想知道新的值,你应该像这样使用 useEffect 钩子。

useEffect(() => {
  console.log(location)
}, [location])

您可以在此处阅读更多信息:https ://reactjs.org/docs/hooks-effect.html

于 2020-05-15T13:48:03.657 回答