ionic 中的本地通知
Local Notifications in ionic
这是我的代码
this.platform.ready().then(() => {
this.localNotifications.schedule({ // ionic local notification native plugin.
title: 'Welcome',
text: 'xxxxxxxxxx',
at: new Date(new Date().getTime() + 1000)
})
})
当使用 at:
变量时,我得到的错误是
Argument of type ‘{ title: any; text: string; at: Date; }’ is not
assignable to parameter of type ‘ILocalNotification |
ILocalNotification’. Object literal may only specify known properties,
and ‘at’ does not exist in type ‘ILocalNotification |
ILocalNotification’.
我想在 1 秒后提示通知。我该怎么做?
您的选项对象与本地通知选项不匹配,请查看此 link https://ionicframework.com/docs/native/local-notifications/。在这里您可以找到所有选项。对于计划 1 秒延迟本地通知,您可以像这样修改代码。
this.localNotifications.schedule({
title: 'Welcome',
text: 'xxxxxxxxxx',
trigger: {at: new Date(new Date().getTime() + 1000)},
});
希望您找到解决方案。
这是我的代码
this.platform.ready().then(() => {
this.localNotifications.schedule({ // ionic local notification native plugin.
title: 'Welcome',
text: 'xxxxxxxxxx',
at: new Date(new Date().getTime() + 1000)
})
})
当使用 at:
变量时,我得到的错误是
Argument of type ‘{ title: any; text: string; at: Date; }’ is not assignable to parameter of type ‘ILocalNotification | ILocalNotification’. Object literal may only specify known properties, and ‘at’ does not exist in type ‘ILocalNotification | ILocalNotification’.
我想在 1 秒后提示通知。我该怎么做?
您的选项对象与本地通知选项不匹配,请查看此 link https://ionicframework.com/docs/native/local-notifications/。在这里您可以找到所有选项。对于计划 1 秒延迟本地通知,您可以像这样修改代码。
this.localNotifications.schedule({
title: 'Welcome',
text: 'xxxxxxxxxx',
trigger: {at: new Date(new Date().getTime() + 1000)},
});
希望您找到解决方案。