我想知道是否有可能创建闪亮的“ selectIcon”之类的东西。我想有一个只带有图标的选择器,例如颜色。

selectizeInput('colours', '',
               choices = c("blue", "red"),
               selected = "blue")


但是我想用彩色方块显示“蓝色”和“红色”两个字。所选选项也应该如此。假设我的所有选项都有.png个文件。如何在selectizeInput()中包含这些文件?

这是与this one非常相似的问题,但是由于我不了解js,因此没有适用的解决方案。

我尝试过这样的事情

  selectizeInput('colours', '',
                 choices = c("blue", "red"),
                 selected = "blue",
                 options = list(render = I(
                   "{
                   option: function(item, escape) {
                   return '<div><img src=\"item.png\" width = 20 />' + escape(item.name) + '</div>'
                   }
                   }"))


但没有成功。现在,这些选项为undefined。没有数字显示。

感谢您的帮助。

最佳答案

您可以使用包shinyWidgets做类似的事情(这个答案是有偏见的,我是这个包的作者):

library("shiny")
library("shinyWidgets")

ui <- fluidPage(
  br(),

  pickerInput(
    inputId = "one",
    label = "Choose:",
    choices = c("red", "blue", "green"),
    choicesOpt = list(content = sprintf(
      "<div style='background: %s;'>&nbsp;</div>",
      c("red", "blue", "green")
    ))
  ),
  verbatimTextOutput(outputId = "resone"),

  pickerInput(
    inputId = "two",
    label = "Choose:",
    choices = c("home", "search", "ok-sign"),
    choicesOpt = list(
      icon = c("glyphicon-home",
               "glyphicon-search",
               "glyphicon-ok-sign")
    )
  ),
  verbatimTextOutput(outputId = "restwo")


)

server <- function(input, output, session) {

  output$resone <- renderPrint(input$one)

  output$restwo <- renderPrint(input$two)

}

shinyApp(ui = ui, server = server)


selectizeInput的一种解决方案是将图像放在应用目录中名为www的文件夹中,然后执行以下操作:

library("shiny")

# dummies images
png(filename = "www/red.png")
plot.new()
rect(0, 0, 1, 1, col = "red")
dev.off()

png(filename = "www/blue.png")
plot.new()
rect(0, 0, 1, 1, col = "blue")
dev.off()


# images are displayed only in dropdown menu
ui <- fluidPage(
  br(),
  selectizeInput(
    'colours', '',
    choices = c("blue" = "blue.png", "red" = "red.png"),
    selected = "blue",
    options = list(
      render = I(
        "{
      option: function(item, escape) {
      return '<div><img src=\"' + item.value + '\" width = 20 />' + escape(item.name) + '</div>'
      }
      }")
    )
  )
)

server <- function(input, output, session) {



}

shinyApp(ui = ui, server = server)


编辑:在shiny的最新版本中,将item.name替换为item.label

09-17 15:48