nextjs/react- usecontext()中的一个元素返回未定义,但已分配为null

发布于 2025-01-21 14:09:52 字数 624 浏览 0 评论 0原文

我是React和NextJ的新手,目前我正在尝试将可变的用户拖网分配给NULL。我以前有这种工作令人沮丧,所以它必须是我所做或错过的小事情。用USECONTEXT内的其他两个变量正确分配了它们的值,但用户删除返回未定义。在git-bash中,它看起来为无效,但是当我在Chrome上检查控制台时,它是不确定的。

Console Output for console.log(state)

console.log(state) in git bash

    const initialState = {
        theDetails:
        Cookies.get('theDetails')
        ? JSON.parse.theDetails
        : null,

};

我已经编辑了代码段,这是状态下的所有三个变量的格式,其他两个返回其正确的值,但另一个没有,关于可能导致这一点的任何建议?

I am new to React and NextJS, I am currently trying to assign the variable userDetails to null. I had this working previously which is frustrating so it has to be something small I've done or missed. The other two variables within useContext are assigned their values correctly but userdetails returns undefined. In git-bash it appears as null but when I inspect console on chrome it is undefined.

Console Output for console.log(state)

console.log(state) in git bash

    const initialState = {
        theDetails:
        Cookies.get('theDetails')
        ? JSON.parse.theDetails
        : null,

};

I have edited the code snippet, this is the format all three of the variables within state follow, the other two return their correct values but the other does not, any suggestions as to what could be causing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2025-01-28 14:09:52

JSON.PARSE.THEDETAILS将始终不确定,因为JSON.PARSE没有称为Thedetails的属性。
您可能想做的是使用参数 cookies.get('thedetails')运行json.parse函数

JSON.parse(Cookies.get('theDetails'))

JSON.parse.theDetails will always be undefined because JSON.parse doesn't have a property called theDetails.
What you probably wanted to do was running JSON.parse function with an argument Cookies.get('theDetails')

JSON.parse(Cookies.get('theDetails'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文