2

我有一个闪亮的应用程序,其中一个主要对象应该根据其他对象/输入(执行其他操作的按钮,其结果不容易跟踪,例如在线数据)的变化来更新。这就是为什么我不得不使用按钮的输入。有没有办法更新主对象而不必为每个按钮重新编写代码?在我的示例中,我不得不使用两次 observeEvent:

library(datasets)
library(shiny)

ui<-fluidPage(    
  titlePanel("Telephones by region"),
  sidebarLayout(      
    sidebarPanel(
      selectInput("region", "Region:", 
                  choices=colnames(WorldPhones)),
      helpText("Data from AT&T (1961) The World's Telephones."),
      actionButton("submit", 
                   label = "submit"), # this also has other functions
      actionButton("change", 
                   label = "change")  # this also has other functions
    ),
    mainPanel(
      plotOutput("phonePlot")  
    )
  )
)
server<-function(input, output) {
data<-reactiveValues()

observeEvent(input$submit,{
  data$data<-WorldPhones[,input$region]
  })
observeEvent(input$change,{
  data$data<-WorldPhones[,input$region]
})
output$phonePlot <- renderPlot({
   if(!is.null(data$data))
    barplot(data$data*1000, 
            ylab="Number of Telephones",
            xlab="Year")
  })
}
shinyApp(ui = ui, server = server)
4

1 回答 1

1

您只需使用两个按钮创建一个表达式,例如使用c()

observeEvent(c(input$submit,input$change),{
  data$data<-WorldPhones[,input$region]
  })
于 2017-02-14T20:16:16.297 回答