如何使用离子和放大器为本地通知设置振动科尔多瓦?

时间:2015-09-16 06:58:11

标签: angularjs ionic-framework cordova-plugins

任何人都可以告诉如何在本地通知中为我想要在我的手机中振动的每个通知设置振动。

本地通知示例代码:

$cordovaLocalNotification.schedule({
  id    : remId,
  title : name.innerHTML,
  text  : note.value,                
  at    : alertDate              
});

振动代码:

$cordovaVibration.vibrate(200);

请帮助我..如果可能的话,请给我一个很好的解决方案。

谢谢!

1 个答案:

答案 0 :(得分:2)

使用振动插件:cordova-plugin-vibration

添加振动非常简单:

navigator.vibrate(1500);

结合通知,您可以执行以下操作:

$cordovaLocalNotification.add({

        id: "12345",
        message: "Test",
        title: "Test",
        autoCancel: false,
        sound: null,
        date: new Date(),

    }).then(function () {

        navigator.vibrate(1500);
});