为了向我的应用添加免责声明,我想在应用启动时使用showNotification()
显示一条消息。
用户应该不必必须按下按钮(如下所示)才能显示消息。
shinyApp(
ui = fluidPage(actionButton("show", "Show")),
server = function(input, output) {
observeEvent(input$show, {
showNotification("This is a notification.")
})
})
答案 0 :(得分:2)
更改为observe
observe({
showNotification("This is a notification.")
})