vibrate
Bắt đầu hỗ trợ ở phiên bản:
- SDK: 2.9.8
Lưu ý
Cần xin cấp quyền tại trang Quản lý ứng dụng
Kích hoạt chế độ rung trên thiết bị.
Parameters
Object object
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
milliseconds | number | 500 | Thời gian rung. Chỉ có thể thiết lập trên thiết bị android | ||
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 { vibrate } from "zmp-sdk/apis";
vibrate({
milliseconds: 1000,
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 { vibrate } from "zmp-sdk/apis";
const handleVibrate = async () => {
try {
const data = await vibrate({
milliseconds: 1000
});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};