我有以下闪亮的应用程序
server <- function(input, output, session) {
rv <- reactiveValues(i = 0)
output$myplot <- renderPlotly({
dt = data.frame(x = 1:10, y = rep(rv$i,10))
plot_ly(dt, x = ~x, y =~y)
})
observeEvent(input$run,{
rv$i <- 0
observe({
isolate({rv$i = rv$i + 1})
if (rv$i < 10){invalidateLater(1000, session)}
})
})
}
ui <- fluidPage(
actionButton("run", "START"),
plotlyOutput("myplot")
)
shinyApp(ui = ui, server = server)
操作按钮一次就可以正常工作:如果我点击它,情节就会更新。但问题是我无法单击它两次,因为它会使应用程序崩溃。
我希望这样,每次单击操作按钮时, rv$i 的值都会恢复为 0,并且动画会重新开始。