问题描述:
调用wx.vibrateLong()方法,android 荣耀magic 5 pro无法震动,但回调成功。
代码:
wx.vibrateLong(
{
success: ()=> {
wx.showToast({
title: '震动成功',
})
},
fail: (errMsg) => {
wx.showToast({
title: `震动失败:${errMsg}`,
})
},
}
);
其他补充:
设备震动已打开。
android13
微信8.0.34
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。