Is anyone else receiving a QUOTA_EXCEEDED_ERR on their iPad when accessing localStorage?

前端 未结 5 1374
终归单人心
终归单人心 2020-12-29 04:03

I have a web application written in JavaScript that runs successfully on the desktop via Safari as well as on the iPhone.

We are looking at porting this applicatio

5条回答
  •  -上瘾入骨i
    2020-12-29 04:43

    I had the same problem and it seems like removing the key before setting it solved it.

    function setkey(key, val){
      sessionStorage.removeItem(key);
      sessionStorage.setItem(key, val);
    }
    

提交回复
热议问题