Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. this.listaPerguntas();
  2. this.IntervalId = setInterval(() => {
  3. this.listaPerguntas();
  4. }, 300000); //A cada 5 minutos verifica se existe uma nova pergunta
  5.  
  6. for (var i = 0; i < res.data.notificar.perguntas.length; i++) {
  7. this.localNotifications.schedule({
  8. id: i,
  9. priority: 2,
  10. text: 'Produto: ' + res.data.notificar.perguntas[i].produto.substring(0, 20) + '...',
  11. title: 'Nova pergunta, conta: ' + res.data.notificar.perguntas[i].conta,
  12. smallIcon: 'res://notification',
  13. foreground: true,
  14. });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement