因此,我正在尝试制作一个闪亮的应用程序,其中有一个按钮,该按钮仅在文件已上传时才显示;为此我使用条件面板。
ui.R:
require(shiny)
shinyUI(pageWithSidebar(
headerPanel("My App"),
sidebarPanel(
fileInput("files", "Choose file"),
conditionalPanel(
condition = "input.files",
actionButton("submitFiles", "Submit files for processing"))),
mainPanel(h3("Nothing to see here"))
))
我认为在我的 server.R 中没有什么需要关心的,因为上面的示例没有做任何事情。在上述条件下,按钮永远不会出现,即条件永远不会为真。
我为自己的情况尝试过的一些事情是input.files.length > 0
, input.files.size() > 0
,这两者都会导致按钮在我上传文件之前出现。我猜这是因为 input$files 在选择文件之前是一个空的 data.frame,因此长度/大小不为零,对吗?
在至少一个文件完成上传之前,我可以使用什么条件隐藏按钮?
我认为另一种选择是替换conditionalPanel
为uiOutput
, 并renderUI({actionButton(...)})
在 server.R 中的观察/隔离块内部调用,该块正在监视 input.files ( if (nrow(input$files) < 1) return()
); 这是唯一的方法吗?如果我能以任何一种方式做到这一点,是什么让我选择其中一个(除了conditionalPanel
导致更少的代码)?