📅  最后修改于: 2022-03-11 15:01:07.306000             🧑  作者: Mango
代码示例1
async removeItemValue(key) {
try {
await AsyncStorage.removeItem(key);
return true;
}
catch(exception) {
return false;
}
}