axios 是否可以使用useEffect挂钩触发api,以查找有关单个项目版本的详细信息[已关闭]

twh00eeo  于 2022-11-05  发布在  iOS
关注(0)|答案(1)|浏览(89)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question

如何使用redux-thunk查找productdetail是否可以使用useEffect挂钩触发API,以使用I 'd matching查找有关特定产品的详细信息,以便在分派时传递(match.params.id)i react_router_dom版本6.4

mf98qq94

mf98qq941#

import { useDispatch} from "react-redux";
import { useParams } from "react-router-dom";

function ComponentName() {
  const dispatch = useDispatch()
  let params = useParams()

  const id = params.id;  

  useEffect(() => {
      dispatch(time(id))
  }, [dispatch, id]);
}

相关问题