navigator.webkitPersistentStorage.requestQuota 适用于 IndexedDB 吗?
Does navigator.webkitPersistentStorage.requestQuota apply to IndexedDB?
使用今天最新版本的 Chrome for Android,我可以使用 navigator.webkitPersistentStorage.requestQuota
请求持久的 IndexedDB 存储吗?
var requestedBytes = 1024*1024*1024;
navigator.webkitPersistentStorage.requestQuota (
requestedBytes, function(grantedBytes) {
console.log('we were granted ', grantedBytes, 'bytes');
}, function(e) { console.log('Error', e); }
);
或者,navigator.webkitPersistentStorage.requestQuota
是否仍然只适用于FileSystem API
?
navigator.webkitPersistentStorage.requestQuota
仅适用于沙盒文件系统 api.
您需要适用于所有站点存储的新 navigator.storage.persist()
api。
https://developers.google.com/web/updates/2016/06/persistent-storage
使用今天最新版本的 Chrome for Android,我可以使用 navigator.webkitPersistentStorage.requestQuota
请求持久的 IndexedDB 存储吗?
var requestedBytes = 1024*1024*1024;
navigator.webkitPersistentStorage.requestQuota (
requestedBytes, function(grantedBytes) {
console.log('we were granted ', grantedBytes, 'bytes');
}, function(e) { console.log('Error', e); }
);
或者,navigator.webkitPersistentStorage.requestQuota
是否仍然只适用于FileSystem API
?
navigator.webkitPersistentStorage.requestQuota
仅适用于沙盒文件系统 api.
您需要适用于所有站点存储的新 navigator.storage.persist()
api。
https://developers.google.com/web/updates/2016/06/persistent-storage