getStorageInfo
Lấy thông tin của cache theo cơ chế đồng bộ.
Return Values
<Object data>
Property | Type | Description | Minimum Version |
---|---|---|---|
currentSize | number | Không gian hiện tại bị chiếm (tính bằng KB) | 2.43.0 |
limitSize | number | Giớ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);
}
};