如何在带有插入的 Shining 应用程序中将文本输入转换为输出

How to convert textInput to output in the Shiny appplication with insertUIs

我有一个小的 Shiny 应用程序,可以使用 insertUI 随机化演讲者列表(以防有更多演讲者)。

问题是我只使用 textInput 让它工作,没有输入框我无法完成它 - 只是为了显示没有输入框的文本。 这更像是一种美学问题,但经过数小时的不成功试验后,我在这里寻求帮助。

非常感谢您的帮助。
赫鲁尼亚

代码如下:

if (interactive()) {
       
  ui <- fluidPage(      
    actionButton("add", "Next speaker")
         )
  
  # Server logic
  server <- function(input, output, session) {
    a <- sample(c("Speaker 1","Speaker 2","Speaker 3","Speaker 4","Speaker 5"))
    uiCount = reactiveVal(0)
    observeEvent(input$add, {
      
      uiCount(uiCount()+1)
      insertUI(
        selector = "#add",
        where = "afterEnd",
        ui = textInput(paste0("txt", input$add), paste0("Speaker #", uiCount() , ": "),
                       placeholder = a[uiCount()] ), 
      )
    })
  }
  shinyApp(ui, server)
}

这更接近你想要的吗?

ui <- fluidPage(
  actionButton("add", "Next speaker"),
  uiOutput("txt")
)

server <-  function(input, output, session) {
  a <- sample(c("Speaker 1","Speaker 2","Speaker 3","Speaker 4","Speaker 5"))
  uiCount = reactiveVal(0)
  
  observeEvent(input$add, {
    uiCount(uiCount()+1)
    
    output$txt <- renderUI({
      div(
        p(
          paste0("Speaker #", uiCount(), " :", a[uiCount()])
        ) #close p
      ) #close div
    })
  })
}
shinyApp(ui, server)