本文介绍了如何在 react-native 中从 AsyncStorage 中删除项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从 AsyncStorage 中删除项目?现在我正在尝试这个代码:

How to remove an item from AsyncStorage? right now I am trying this code:

AsyncStorage.removeItem('userId');

但这对我不起作用.

推荐答案

试试这个:

async removeItemValue(key) {
    try {
        await AsyncStorage.removeItem(key);
        return true;
    }
    catch(exception) {
        return false;
    }
}

这篇关于如何在 react-native 中从 AsyncStorage 中删除项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 07:02