下午好,
我一直在搜索,但找不到任何东西,我想从我用ionic 3制成的应用程序中找到该东西,当我单击按钮时,会有移动设备的警报工具,可以吗?
感谢您的时间
答案 0 :(得分:0)
选中。它应该使用传递给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中查看完整的文档,其中包含可用的触发器类型的完整列表。