Nhảy tới nội dung

getStorageInfo

Lấy thông tin của cache theo cơ chế đồng bộ.

Return Values

<Object data>

PropertyTypeDescriptionMinimum Version
currentSizenumberKhông gian hiện tại bị chiếm (tính bằng KB)2.43.0
limitSizenumberGiới hạn kích thước không gian (tính bằng KB)2.43.0

Sample Code

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

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