条件面板在Shiny中不起作用

时间:2016-01-07 15:05:53

标签: r shiny

我正在尝试使用conditionalPanel在加载文件时显示消息。但是,一旦条件为TRUE,面板不会消失。我在下面创建了一个可重现的代码:

server.R

library(shiny)

print("Loading start")
print(paste("1->",exists('FGram')))
FGram <- readRDS("data/UGram.rds")
print(paste("2->",exists('FGram')))
print("Loading end")

shinyServer( function(input, output, session) {

})

ui.R

library(shiny)

shinyUI( fluidPage(
  sidebarLayout(
    sidebarPanel(
      h4("Side Panel")
      )
    ),

    mainPanel(
      h4("Main Panel"),
      br(),
      textOutput("First Line of text.."),
      br(),
      conditionalPanel(condition = "exists('FGram')", HTML("PLEASE WAIT!!     <br>App is loading, may take a while....")),
      br(),
      h4("Last Line of text..")
    )
  )
)

1 个答案:

答案 0 :(得分:3)

提供给conditionalPanel的条件在javascript环境中执行,而不是在R环境中执行,因此无法在R环境中引用或检查变量或函数。您的情况的解决方案是使用uiOutput,如下例所示。

myGlobalVar <- 1

server <- function(input, output) {

    output$condPanel <- renderUI({
        if (exists('myGlobalVar')) 
            HTML("PLEASE WAIT!!     <br>App is loading, may take a while....")
    })

}

ui <- fluidPage({
    uiOutput('condPanel')
})


shinyApp(ui=ui, server=server)