https://github.com/moderna/cordova-plugin-cache
document.addEventListener('deviceready', onDeviceReady);
function onDeviceReady()
{
var success = function(status) {
//alert('Message: ' + status);
}
var error = function(status) {
}
window.cache.clear( success, error );
window.cache.cleartemp(); //
}
我在我的cordova项目应用页面中使用此插件 我发现了那个 使用上述功能后,强制完成app 然后清除所有window.localStorage数据 虽然在android中清除缓存后将一些数据添加到localStorage中。 (比如成功的功能)
我使用localStorageData设置了介绍页面 所以有时会引起问题。
这是一个错误? 在cacahe clear之后我如何将数据添加到localStorage中?