admin管理员组文章数量:1344319
I'm trying to create a forward and a backward button that will navigate within the application and I need the buttons to be grey when the user can not go back or forth anymore and black when it can be used. The issue is I don't know how to track that, specially the forward. I'm using useRouter (typescript and tailwind) in Next.js. I have tried using window.history.length > 2
for going forward and window.history.state
but neither of those work. Perhaps because I might have gone between multiple pages so the length is more than two, but since I have not gone backwards, I can't go forward either. So the button keeps are black but not functioning (atleast the forward button). And if the colors work then the forward button does not work at all. Here is part of the code for more context
const NavigationButtons = () => {
const router = useRouter();
const [canGoBack, setCanGoBack] = useState(false);
const [canGoForward, setCanGoForward] = useState(false);
useEffect(() => {
const updateHistoryState = () => {
setCanGoBack(window.history.length > 1);
setCanGoForward(
window.history.state && window.history.state.idx < window.history.length - 1
);
};`
本文标签: javascriptHow to check if the useRouter can go forward and backward in NextjsStack Overflow
版权声明:本文标题:javascript - How to check if the useRouter can go forward and backward in Next.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743774732a2536762.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论