我的网页上有actionButton()
进行了一些计算,并在20或30秒后完成。
有没有办法在应用程序运行时禁用该按钮?或者任何其他方法也可能很有趣。我问这是因为我的应用程序的某些用户双击actionButton
,我可以在服务器中看到计算运行两次。
谢谢!
答案 0 :(得分:6)
您可以使用shinyjs
包中的功能对几乎所有输入使用禁用功能。下面我创建了一些密集的操作,并且在生成表时按钮将停用,因此除非首先生成输出,否则用户不能多次按下它。
rm(list = ls())
library(shiny)
library(DT)
library(shinyjs)
ui =fluidPage(
useShinyjs(),
sidebarPanel(
sliderInput("numbers", "Number of records", 1000000, 5000000, 1000000, sep = ""),
actionButton("goButton","GO")
),
mainPanel(DT::dataTableOutput('table'))
)
server = function(input, output, session){
My_Data<-reactive({
if (is.null(input$goButton) || input$goButton == 0){return()}
isolate({
input$goButton
# Disable a button
disable("goButton")
# below is your intensive operation
a <- round(rnorm(input$numbers),2)
b <- round(rnorm(input$numbers),2)
# Enable a button again
enable("goButton")
data.frame("a" = a, "b" = b)
})
})
output$table <- DT::renderDataTable(withProgress(datatable(My_Data(),options = list(searching = FALSE,pageLength = 10,lengthMenu = c(5,10, 50))),message = "Generating Data"))
}
runApp(list(ui = ui, server = server))
答案 1 :(得分:4)
您可以在单击后禁用按钮,并在退出时再次启用它。它可以手动完成,但shinyjs
已经提供了所需的帮助。
如果点击的功能可能会失败,您可以tryCatch
与finally
一起使用,以确保您的应用不会处于停用状态:
library(shiny)
library(shinyjs)
foo <- function() {
Sys.sleep(4)
x <- runif(1)
if(x < 0.5) stop("Fatal error")
print(x)
}
shinyApp(
ui=shinyUI(bootstrapPage(
useShinyjs(),
actionButton("go", "GO")
)),
server=shinyServer(function(input, output, session){
observe({
if(input$go == 0) return()
shinyjs::disable("go")
tryCatch(
foo(),
error = function(e) return(),
finally = shinyjs::enable("go")
)
})
})
)