我有一个使用 IonicStorage 和IndexDb的 Ionic 4 应用程序。用户将拍摄一些照片,这些照片将保存在存储中。该过程完成后,如果用户查看应用程序设置将看到如下内容:
问题:当用户尝试再次登录时,用户数据必须被擦除、清除。我试图通过从存储中调用 clear 方法来删除数据。
/**
* Clear the entire key value store. WARNING: HOT!
* @returns {Promise} Returns a promise that resolves when the store is cleared
*/
public ClearStorage(): Promise<any> {
return this.ionicStorage.clear();
}
我还在 config.xml 中添加了这些标志……但没有成功。我抹不掉
...
<application android:allowBackup="false" />
<application android:fullBackupContent="false" />
...
你能给我一些建议吗?泰