如何从AsyncStorage删除项目?现在我正在尝试此代码

AsyncStorage.removeItem('userId');


但这对我不起作用。

最佳答案

试试这个:

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

关于react-native - 如何从react-native中的AsyncStorage中删除项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47571976/

10-10 08:32