How to trigger a data refresh in shiny?

前端 未结 3 703
遥遥无期
遥遥无期 2020-12-08 05:12

I have a shiny application that queries data from SQL into data frames, and then those data frames are referenced from my shinyServer() block. I\'ve been running it only in

3条回答
  •  不思量自难忘°
    2020-12-08 05:30

    You're looking for invalidateLater. Put this, with the appropriate interval, in the reactive expression that retrieves data from the the database.

提交回复
热议问题