我有一个React.js代码库,其中我使用universal-cookie在cookie中存储了一些数据,并且工作正常,然后我用相同的代码库和Electron和electron-builder创建了一个.exe文件,启动该.exe,当其中的cookie进入该.exe时,它停止工作。
我弄清楚我在哪里使用cookies.get("key")
;它陷入了困境,无法从Cookie中获取价值,反而获得了undefined
。但是,当我将其作为React应用运行时,即在http://localhost:3000
如何解决此问题?预先感谢您的帮助。
请找到一个代码段:
import Cookies from 'universal-cookie';
const cookies = new Cookies();
this.state.scope ? cookies.set("scope", this.state.scope): ""; //this line works fine
console.log("THIS IS COOKIES SPEAKING....", cookies.get("scope")); //here it's causing an issue