我们使用 GX15 U5 开发了一款 SD 应用程序,它使用 One Signal API 发送和接收推送通知。这工作正常。
但是,当我从使用 GX Ev3 U11 开发的 Web 面板发送推送通知以调用主 SD 面板上的事件时,这不会发生。用于从 Web 面板发送的代码如下:
&PushConfigProperties = OneSignalPushConfig()
&GXPushNotification.Alert= 'Mi Notificacion'
&GXPushNotification.Title='Title'
&GXPushNotification.Badge = '1'
&GXPushNotification.Event.Name='Acerca_De'
&GXPushNotification.Event.Execution = EventExecution.OnNotificationArrive
&ProviderDeviceId ='11f3cfc0-569d-4e30-a6dc-a60308489a31'
&GXPushOperationResult = PushSendMessageDevice(&PushConfigProperties,
&GXPushNotification, &ProviderDeviceId, 2)
主 SD 面板上存在事件 Acerca_De
是什么导致不执行此事件?