ui <- fluidPage(
selectInput(
"select_id",
"Select Name",
choices = c("A", "B", "C"),
selected = NULL,
multiple = TRUE
),
)
server <- function(input, output, session) {
# how to get the choices here?
}
shiny::shinyApp(ui = ui, server = server)
問題は、サーバー機能から選択肢を取得する方法があるということですか?
編集:
動的であり、最初はそれらが何であるかがわからないため、グローバルベクトルとして選択肢を持つことはできません。アプリの起動後に計算されます。