Does amplify.store return error or catch exception when local storage limit exceeded?

StackOverflow https://stackoverflow.com/questions/12508274

  •  03-07-2021
  •  | 
  •  

Pregunta

Is there e way to check if local storage limit is exceeded after a call like this:

amplify.store("key", object);

What happens if i try to store something bigger than the local storage limit ?

¿Fue útil?

Solución

yes , it throws "amplify.store quota exceeded" , as you can see here

store.error = function() {
    return "amplify.store quota exceeded"; 
};

...

try {
                    storage.setItem( key, parsed );
                // quota exceeded
                } catch( error ) {
                    // expire old data and try again
                    store[ storageType ]();
                    try {
                        storage.setItem( key, parsed );
                    } catch( error ) {
                        throw store.error();
                    }
                }
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top