I have an issue when loading application, browser show an error : Failed to execute 'setItem' on 'Storage' : Setting the value of '$Isdemo' exceeded the quota. $Isdemo is a client variable and boolean type. I have some question:
- The module is reactive web module and have lots of client varibale. In the context , do 'Storage' mean "Local Storage" ? If not, what kind of "Storage" in this context ?
- where do "Client variables" store value in browser ?
pls help me answer the question above. Many Thanks
Thanks
Hi @Mike Hiew
Can you please check this client variable is using in any jQuery code
As I can see $ symbol with variable name.
It might be possible this error coming from any jQuery code.
Thanks
Arun
Thanks
Hello Mike,
- Regarding storage it means local storage of your browser
- all client variables saved into local storage of browser
Can you try to clear local storage and run you application again?
You can do this by press F12 to open developer tools of your browser then go to application tab. You will find local storage then find your application local storage right click and select clear as screenshot below for chrome.
Thanks