在闪亮的应用启动时显示通知

时间:2018-07-25 05:36:11

标签: r shiny

为了向我的应用添加免责声明,我想在应用启动时使用showNotification()显示一条消息。

用户应该不必必须按下按钮(如下所示)才能显示消息。

shinyApp(
ui = fluidPage(actionButton("show", "Show")),   
server = function(input, output) {
    observeEvent(input$show, {
      showNotification("This is a notification.")
    })   
})

1 个答案:

答案 0 :(得分:2)

更改为observe

   observe({
      showNotification("This is a notification.")
    })