离子本地通知
Ionic Local Notifications
我有一个我无法解决的问题。
我用 woocommerce 创建了一个电子商务。我使用 onesignla 发送更新通知等。
但我希望每个用户在订单更改状态时都有自己的通知,例如:
从接收到完成...
我尝试使用 localnotification 但没有成功,有人能帮助我吗?
我的订单-page.ts
orderstatus: any;
orderChangeStatus(){
if (this.orderstatus == 'processing') {
this.LocalNotifications.schedule({
title: 'My first notification',
text: 'flight is landed',
foreground: true
});
}
if (this.orderstatus == 'completed') {
this.LocalNotifications.schedule({
title: 'My first completed',
text: 'flight is landed',
foreground: true
});
}
}
html
</ion-row>
<ion-row [class.pending]="order.status=='pending' || order.status=='refunded'"
[class.cancel]="order.status=='cancelled' || order.status=='failed'"
[class.inprocess]="order.status=='processing'" [class.complete]="order.status=='completed'">
<ion-col size="6">
{{'Status'|translate}}
</ion-col>
<ion-col class="ion-text-right" size="6">
<strong>{{order.status|translate}}</strong>
</ion-col>
</ion-row>
Ionic Local Notifications 适用于从应用程序本身触发的通知,没有推送通知服务器(例如,日历提醒)。它们不适合推送通知,除非您设置了自己的后台工作者推送通知框架。
您应该改用 Ionic OneSignal 插件。在此处查找文档:https://ionicframework.com/docs/native/onesignal
现阶段我帮不了你更多,你应该尝试使用这个插件,如果你有进一步的问题,请再问一个问题。
我有一个我无法解决的问题。 我用 woocommerce 创建了一个电子商务。我使用 onesignla 发送更新通知等。 但我希望每个用户在订单更改状态时都有自己的通知,例如: 从接收到完成... 我尝试使用 localnotification 但没有成功,有人能帮助我吗?
我的订单-page.ts
orderstatus: any;
orderChangeStatus(){
if (this.orderstatus == 'processing') {
this.LocalNotifications.schedule({
title: 'My first notification',
text: 'flight is landed',
foreground: true
});
}
if (this.orderstatus == 'completed') {
this.LocalNotifications.schedule({
title: 'My first completed',
text: 'flight is landed',
foreground: true
});
}
}
html
</ion-row>
<ion-row [class.pending]="order.status=='pending' || order.status=='refunded'"
[class.cancel]="order.status=='cancelled' || order.status=='failed'"
[class.inprocess]="order.status=='processing'" [class.complete]="order.status=='completed'">
<ion-col size="6">
{{'Status'|translate}}
</ion-col>
<ion-col class="ion-text-right" size="6">
<strong>{{order.status|translate}}</strong>
</ion-col>
</ion-row>
Ionic Local Notifications 适用于从应用程序本身触发的通知,没有推送通知服务器(例如,日历提醒)。它们不适合推送通知,除非您设置了自己的后台工作者推送通知框架。
您应该改用 Ionic OneSignal 插件。在此处查找文档:https://ionicframework.com/docs/native/onesignal
现阶段我帮不了你更多,你应该尝试使用这个插件,如果你有进一步的问题,请再问一个问题。