Nhảy tới nội dung

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

Sample Code

import { nativeStorage } from "zmp-sdk/apis";

const clearData = () => {
try {
nativeStorage.clear();
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};