如何从离子打开警报功能

时间:2018-07-08 10:06:57

标签: cordova ionic-framework ionic3 ionic-native

下午好,

我一直在搜索,但找不到任何东西,我想从我用ionic 3制成的应用程序中找到该东西,当我单击按钮时,会有移动设备的警报工具,可以吗?

感谢您的时间

1 个答案:

答案 0 :(得分:0)

选中5 different GPS coordinates, with repetition。它应该使用传递给schedule方法的trigger属性为您完成工作。

示例:

import { LocalNotifications } from '@ionic-native/local-notifications';


constructor(private localNotifications: LocalNotifications) { }

...

    // Schedule delayed notification
    this.localNotifications.schedule({
       text: 'Delayed ILocalNotification',
       trigger: {at: new Date(new Date().getTime() + 3600)},
       led: 'FF0000',
       sound: null
    });

Ionic Native Local Notifications Plugin中查看完整的文档,其中包含可用的触发器类型的完整列表。