作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 RShiny 应用程序中实现模式弹出窗口,要求用户输入日期。在向用户询问新日期之前,输入的日期将在循环内的流程中使用。使用我当前的代码,只会弹出最后一个循环的模态,在本例中是循环 5。我将如何更改我的代码以在每个循环中都有一个弹出模式?
这是我当前代码的示例:
ui = basicPage(
actionButton("show", "Show modal dialog")
)
server <- function(input, output) {
observeEvent(input$show, {
for(i in 1:5){
showModal(modalDialog(
textInput(paste("modal",i,sep=" "), paste("Please enter a date for ID", i, sep = " "),
placeholder = "Please use format MM/DD/YYYY"),
footer = tagList(modalButton("Enter"))
###Process using inputted date for loop
))}})}
shinyApp(ui = ui, server = server)
最佳答案
这并没有直接回答你为什么它不能与你的代码一起工作的问题(答案有点复杂,但@BigDataScientist 是正确的,有很多老问题与“为什么一个 for循环只输出最后的结果?”)。但是这里有一个使用 shinyalert
modal 而不是 shiny modals 的解决方案:
NUM_MODALS <- 5
ui <- fluidPage(
shinyalert::useShinyalert(),
actionButton("show", "Show modal dialog"),
lapply(seq(NUM_MODALS), function(id) {
div(id, ":", textOutput(paste0("modal", id), inline = TRUE))
})
)
server <- function(input, output) {
observeEvent(input$show, {
for(id in 1:5){
shinyalert::shinyalert(
type = "input",
text = paste("Please enter a date for ID", id),
inputPlaceholder = "Please use format MM/DD/YYYY",
inputId = paste0("modal", id)
)
}
})
lapply(seq(NUM_MODALS), function(id) {
output[[paste0("modal", id)]] <- renderText({
input[[paste0("modal", id)]]
})
})
}
shinyApp(ui = ui, server = server)
关于R Shiny : How to have sequential Modals in for loop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54317367/
我是一名优秀的程序员,十分优秀!