是否可以及时计算在线 Shiny R应用程序中不同访客的数量?

先感谢您

最佳答案

您可以在global.R中定义一个反应式计数器,该值在用户连接时增加,在用户断开连接时减少。这是一个例子。

library(shiny)

# put this line in global.R in case you want to launch the app
# with runApp (from a directory) rather than shinyApp
nvisitors = reactiveVal(0)

server = function(input, output, session){
  nvisitors(isolate(nvisitors()) + 1)
  onSessionEnded(function(x){
    nvisitors(isolate(nvisitors()) - 1)
  })

  output$text = renderText({
    nvisitors()
  })
}

ui = shinyUI(
  textOutput("text")
)

shinyApp(ui, server)

计算访问者总数更具挑战性,因为您需要实现persistent data storage才能正确地做到这一点。

关于javascript - 在 Shiny 的R应用程序上了解访客身份,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43051537/

10-12 15:15