2012-09-20 15 views

Respuesta

8

sí, tiros "amplify.store cuota superado", como se puede ver aquí

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(); 
        } 
       } 
Cuestiones relacionadas