getItem
Lấy dữ liệu đã lưu ở cache theo cơ chế đồng bộ.
Parameters
Object object
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
key | string | true | chuỗi chứa tên khóa của dữ liệu cần lấy | 2.43.0 |
Return Values
<string data>
Type | Description | Minimum Version |
---|---|---|
string | Giá trị của khóa cần lấy, trả null nếu khóa không tồn tại | 2.43.0 |
Sample Code
import { nativeStorage } from "zmp-sdk/apis";
const getData = () => {
try {
const data = nativeStorage.getItem("key1");
console.log(data);
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};