removeItem
Xoá dữ liệu trong 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 xoá | 2.43.0 |
Sample Code
import { nativeStorage } from "zmp-sdk/apis";
const removeStorageData = () => {
try {
nativeStorage.removeItem("key-1");
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};