R Shiny:在modalDialog中包含图像

时间:2017-12-21 16:28:08

标签: r shiny

我想在modalDialog中显示图像,但R不会渲染图像。

以下代码仅显示指向Google徽标的链接,但不显示Google徽标本身的链接:

Server.R:

observeEvent(input$button, {
    showModal(modalDialog(
      title = "Title",
      '<img>https://www.google.nl/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png</img>',
      easyClose = TRUE,
      footer = NULL
    ))
  })

UI.R

actionButton(inputId ="button", label = "Click me")

1 个答案:

答案 0 :(得分:2)

      observeEvent(input$button, {
        showModal(modalDialog(
          title = "Title",
          HTML('<img src="http://www.google.nl/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">'),
          easyClose = TRUE,
          footer = NULL
        ))

  })

你的html中有错误。使用HTML(...)标记指定html代码,然后在<img>标记中指定来源。上面的代码对我有用。