gpt4 book ai didi

javascript - R Shiny : conditionalPanel not working if used several widgets

转载 作者:行者123 更新时间:2023-11-29 21:13:24 24 4
gpt4 key购买 nike

条件面板不会在我 Shiny 的应用程序中显示消息“正在加载...”。当按下所有小部件时,必须出现消息。

sidebarPanel(id="sidebar",
textInput("id1", "Write word 1:"),
textInput("id2", "Write word 2:"),
selectInput("line", "Select:",
c("Line1"=1,
"Line2"=2,
"Line3"=3)),
dateRangeInput("dateRange",
label = "Select a date range:", start = as.character(Sys.Date()-1), end = as.character(Sys.Date()),
actionButton("update", "OK"),
p("Press OK to update inputs"),
conditionalPanel(condition="input.id1>0 && input.id2>0 && input.line>0 && input.dateRange>0 && input.update>0",
tags$div("Loading...",id="loadmessage"))
)

我认为条件不对。

最佳答案

在 js 中比较 numericcharacter 的问题

您只需要将 0 用于数字结果(示例中的 actionButton 和 selectInput)

你需要这样的条件 input.id1>'' && input.id2>'' && input.line>0&& input.dateRange>'' && input.update>0

关于javascript - R Shiny : conditionalPanel not working if used several widgets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40630621/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com