Nhảy tới nội dung

Xoá dữ liệu trong cache theo cơ chế đồng bộ.

Parameters

Object object

PropertyTypeDefaultRequiredDescriptionMinimum Version
keystringtruechuỗ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);
}
};