我对离子原生振动插件有一个小问题。 https://ionicframework.com/docs/native/vibration/
如您所知,您无法再为ios用户设置振动时间或模式。然而,在我的应用程序中,我即将创建一个闹钟,因此它将播放声音或振动,直到用户摇动设备。你知道任何解决方法,所以它也适用于IOS吗?或至少30秒长的振动?
答案 0 :(得分:1)
也许您可以像这样使用setInterval
let stop = false;
let timer = setInterval(()=>{
if(stop){clearInterval(timer)}
this.vibration.vibrate(1000);
},1000)
当stop === true时,它不会振动