gpt4 book ai didi

next.js - 静态 NextJS 站点中的 localStorage : ReferenceError: localStorage is not defined

转载 作者:行者123 更新时间:2023-12-04 09:16:02 27 4
gpt4 key购买 nike

我正在尝试在 NextJS 静态站点上使用 localStorage,但遇到 localStorage 未定义错误。
我的错误显示组件的代码是:

export default function Category() {

const [cart, setCart] = useState(
localStorage.getItem("myCart") || ""
);

useEffect(() => {
localStorage.setItem("myCart", cart);
}, [cart]);

function addItem() {
setCart("item")
}

return (
<>
<button onClick={addItem}>Add</button>)
</>
);
}
知道是否可以在 NextJS 静态站点上使用 localStorage 或者我做错了什么?
谢谢!

最佳答案

我用过 use-persisted-state :

import createPersistedState from 'use-persisted-state';

const useCartState = createPersistedState('cart');

export default function Category() {

const [cart, setCart] = useCartState('');

function addItem() {
setCart("item");
}

return (
<>
<button onClick={addItem}>Add</button>)
</>
);
}

关于next.js - 静态 NextJS 站点中的 localStorage : ReferenceError: localStorage is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63212462/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com