gpt4 book ai didi

R Shiny : include image in modalDialog

转载 作者:行者123 更新时间:2023-12-03 23:17:28 24 4
gpt4 key购买 nike

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

以下代码仅显示指向 Google Logo 的链接,而不显示 Google Logo 本身:

服务器.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
))
})

用户界面
actionButton(inputId ="button", label = "Click me")

最佳答案

      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>中指定源标签。上面的代码对我有用。

关于R Shiny : include image in modalDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47929034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com