...
Блок кода | ||||
---|---|---|---|---|
| ||||
var rst = new Query("SELECT Id FROM Catalog_User").Execute(); var arr = []; while(rst.Next()) { arr.push(StringToString(rst.Id.Guid)); } PushNotification.SendMessage("hello there !", arr); |
...
OnPushMessage
Событие контроллера Events.js. Срабатывает при получении сообщения, параметр sender содержит Guid отправителя, пример:
Блок кода |
---|
function OnMessageOnPushMessage(sender,datamessage) { LocalNotification.Notify(datamessage); } |