在 Android 设备中卸载并安装 ionic v1 应用程序后,$localStorage 数据已经存在
$localStorage data already there after I uninstalled and installed the ionic v1 app in Android device
我正在开发 ionic v1 移动应用程序。当我从
Android台设备,$localstorage
中保存的数据在我重新安装应用程序后已经存在
我也在用cordova-plugin-crosswalk-webview
版本2.2.0
其他信息:
Cordova CLI: 6.3.1
Gulp version: CLI version 3.9.1
Gulp local: Local version 3.9.1
Ionic Framework Version: 1.1.1
Ionic CLI Version: 2.1.1
Ionic App Lib Version: 2.1.1
Node Version: v4.4.1
非常感谢您的任何帮助。
谢谢!
这是一个奇怪但也是普遍存在的问题。
如果您有注销按钮,您可以简单地执行以下操作:
$scope.logout = function(){
$window.localStorage.clear();
$ionicHistory.clearCache();
$ionicHistory.clearHistory();
};
另一种解决方案是,当应用程序在 app.js 中启动时,您可以添加此代码:
$window.localStorage.clear();
$ionicHistory.clearCache();
$ionicHistory.clearHistory();
然后用新内容更新本地存储。
如果用户卸载应用程序(未注销),您无法在 ionic 中捕获卸载事件。
另一方面,Android 6 有自动备份功能(本地存储在版本 < 6 的情况下保留数据?你试过了吗?)。
在 manifest.xml.
中尝试 setting/add android:allowBackup="false"
和 android:fullBackupContent="false"
这些属性可以在应用程序 manifest.xml 的 <application/>
中找到。
我正在开发 ionic v1 移动应用程序。当我从
Android台设备,$localstorage
中保存的数据在我重新安装应用程序后已经存在
我也在用cordova-plugin-crosswalk-webview
版本2.2.0
其他信息:
Cordova CLI: 6.3.1
Gulp version: CLI version 3.9.1
Gulp local: Local version 3.9.1
Ionic Framework Version: 1.1.1
Ionic CLI Version: 2.1.1
Ionic App Lib Version: 2.1.1
Node Version: v4.4.1
非常感谢您的任何帮助。
谢谢!
这是一个奇怪但也是普遍存在的问题。
如果您有注销按钮,您可以简单地执行以下操作:
$scope.logout = function(){
$window.localStorage.clear();
$ionicHistory.clearCache();
$ionicHistory.clearHistory();
};
另一种解决方案是,当应用程序在 app.js 中启动时,您可以添加此代码:
$window.localStorage.clear();
$ionicHistory.clearCache();
$ionicHistory.clearHistory();
然后用新内容更新本地存储。
如果用户卸载应用程序(未注销),您无法在 ionic 中捕获卸载事件。
另一方面,Android 6 有自动备份功能(本地存储在版本 < 6 的情况下保留数据?你试过了吗?)。
在 manifest.xml.
中尝试 setting/addandroid:allowBackup="false"
和 android:fullBackupContent="false"
这些属性可以在应用程序 manifest.xml 的 <application/>
中找到。