ReactNativeAsyncStorage interface

提供的 AsyncStorage 介面。

簽名:

export interface ReactNativeAsyncStorage 

方法

方法 說明
getItem(鍵) 從儲存空間擷取項目。
removeItem(鍵) 從儲存空間中移除項目。
setItem(key, value) 在儲存空間中保留項目。

ReactNativeAsyncStorage.getItem()

從儲存空間擷取項目。

簽名:

getItem(key: string): Promise<string | null>;

參數

參數 類型 說明
金鑰 字串 儲存空間金鑰。

傳回:

Promise<字串 |空值>

ReactNativeAsyncStorage.removeItem()

從儲存空間中移除項目。

簽名:

removeItem(key: string): Promise<void>;

參數

參數 類型 說明
金鑰 字串 儲存空間金鑰。

傳回:

承諾<void>

ReactNativeAsyncStorage.setItem()

在儲存空間中保留項目。

簽名:

setItem(key: string, value: string): Promise<void>;

參數

參數 類型 說明
金鑰 字串 儲存空間金鑰。
字串 Storage 值。

傳回:

承諾<void>