有没有办法使用HTML标签(例如h6)进行updateSelectizeInput(适用于selectInput,请参阅下面的代码)?使用下面的代码,只需在updateSelectizeInput [object Object]中使用h6(" Label")即可显示为输出。
rm(list = ls())
library(shiny)
ui =fluidPage(
selectizeInput('DropDownSelectize',choices=NULL,label=""),
selectInput('DropDownSelect',choices = c("choice1","choice2","choice3"),
label=h6("Label"))
)
server = function(input, output, session) {
observe({
updateSelectizeInput(session,
'DropDownSelectize',
label = h6("Label"),
choices = c("choice1","choice2","choice3"),
selected = "choice1",
server = TRUE)
})
}
runApp(list(ui = ui, server = server))
谢谢
答案 0 :(得分:2)
如果标签始终相同,则不要在label
上设置updateSelectizeInput
的值。实际上,您应该只设置要更改的参数。
例如,这只是更改选定的值:
updateSelectizeInput(session, 'DropDownSelectize', selected = "choice3")
如果需要更改label
的值但使用标记或样式(例如本例h6
),则可以使用shinyjs
仅更改标签的文本。为此,您需要在id
标记中添加h6
。请参阅下面的示例,其中第一个观察者使用html
shinyjs
函数更改标签。我还添加了两个按钮来手动更改标签的文本。
library(shiny)
library(shinyjs)
ui =fluidPage(
shinyjs::useShinyjs(), # to initialize shinyjs
selectizeInput('DropDownSelectize',choices=NULL,label=h6("", id = "labelText")),
selectInput('DropDownSelect',choices = c("choice1","choice2","choice3"),
label=h6("Label")),
actionButton("useLabel1", "Use Label 1"),
actionButton("useLabel2", "Use Label 2")
)
server = function(input, output, session) {
observe({
updateSelectizeInput(session,
'DropDownSelectize',
# label = h6("Label"), # no needed
choices = c("choice1","choice2","choice3"),
selected = "choice1",
server = TRUE)
shinyjs::html("labelText", "Label")
})
observeEvent(input$useLabel1, {
shinyjs::html("labelText", "Label 1")
})
observeEvent(input$useLabel2, {
shinyjs::html("labelText", "Label 2")
})
}
runApp(list(ui = ui, server = server))