React uncaught type error: Cannot read properties of undefined reading params

React uncaught type error: Cannot read properties of undefined reading params

我的页面显示空白。请帮我解决这个问题

您已经从 react-router-dom 导入了 useParams,因此您需要添加

const { nftId } = useParams();

而不是使用 match.params.nftId

然后你可以输入条件 if (nftId) { your code here }