Nhảy tới nội dung

Bắt đầu hỗ trợ ở phiên bản:

  • SDK: 2.17.0

Tắt màn hình Splash Loading. Lưu ý: bạn cần thêm 'selfControlLoading': true trong cấu hình ứng dụng

Parameters

Object object

PropertyTypeDefaultRequiredDescriptionMinimum Version
successfunctionCallback function khi gọi api thành công
failfunctionCallback function khi gọi api thất bại

Sample Code

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

closeLoading({
success: (data) => {
// xử lý khi gọi api thành công
},
fail: (error) => {
// xử lý khi gọi api thất bại
console.log(error);
}
});

Hoặc

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

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