hideKeyboard
Bắt đầu hỗ trợ ở phiên bản:
- API: 2.5.3
Lưu ý
Với API version ﹤ 2.23.0, phải gọi api login trước khi gọi api này và cần xin cấp quyền tại trang Quản lý ứng dụng
Cho phép ứng dụng ẩn bàn phím
Parameters
Object object
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
success | function | Callback function khi gọi api thành công | |||
fail | function | Callback function khi gọi api thất bại |
Sample Code
import { hideKeyboard } from "zmp-sdk/apis";
const hide = () => {
hideKeyboard({
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 { hideKeyboard } from "zmp-sdk/apis";
const hide = async () => {
try {
const data = await hideKeyboard({});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};