【发布时间】:2021-03-04 08:44:00
【问题描述】:
我正在尝试访问在 observe( ) 中创建的反应式并希望作为模块返回的对象。在下面的示例中,我正在从模块中查找 mydf() 和 input$account_page。我知道我可以使用observeEvent(input$go_to, { }) 显示模态,但我有其他用例可以这样做,我很难为此创建可重现的示例。因此,我为指定的问题创建了以下内容。
library(shiny)
library(shinyWidgets)
choiceVec <- c("Beef/Pork" = "beefpork","Sugar sweeteened bev." = "ssb",
"Total fruit" = "total_fruit")
address_ui <- function(id) { }
address_server <- function(id, signin = reactive(0)) {
moduleServer(id, function(input, output, session) {
observe({
shiny::showModal(
shiny::modalDialog(
fluidRow(
column(
width = 6,
shiny::textInput(
"state",
"State",
width = "100%",
placeholder = "California"
)),
column(
width = 6,
shinyWidgets::pickerInput(
"country",
"Country",
choices = choiceVec,
width = "100%",
# selected = "us",
options = list(
title = "Select Country",
`live-search` = TRUE)
)
)),
title = "Address",
footer = tags$span(
shiny::actionButton(
'account_page',
'Next'
)
),
size = 'm'
)
)
mydf <- reactive({
list(
state = input$state,
country = input$country
)
})
})
return( list(mydf(), reactive({ input$account_page }) ))
})
}
ui <- fluidPage(
actionLink(
"go_to",
"Click Me",
icon = icon("credit-card")
),
address_ui("user_info")
)
server <- function(input, output, session) {
user_details_return <- address_server(
id = "user_info",
signin = 1
)
}
shinyApp(ui, server)
【问题讨论】: