有没有办法用 Shiny R 在 textInput 中放置超链接

Posted

技术标签:

【中文标题】有没有办法用 Shiny R 在 textInput 中放置超链接【英文标题】:Is there a way to place a hyperlink inside a textInput with Shiny R 【发布时间】:2019-10-20 00:20:12 【问题描述】:

对于我目前正在处理的项目,我想使用闪亮的 R 在 textInput 框中放置一个超链接。在 R 中使用以下脚本时,我的 html 代码将显示在 textInput 框中,而不是显示“Google 主页”作为可点击的链接。


test <- a("Google Homepage", href="https://www.google.com/")

runApp(
    list(ui = fluidPage(
         textInput("test", "test", test)
    ),
    server = function(input, output, session)
    )
)

是否可以在文本输入框中放置超链接?还是仅作为输出值?

【问题讨论】:

不可能:***.com/questions/5823835/… 【参考方案1】:

正如@Stéphanie 提到的,这是不可能的。 因为您将 a 标签作为输入元素的值包含在内。如果您查看 HTML,您将看到:

<input id="test" type="text" class="form-control shiny-bound-input" value="<a href=&quot;https://www.google.com/&quot;>Google Homepage</a>">

因此,如果您只想要一个可点击的链接,则不需要textInput。 只需将a tag 放入fluidPage

test <- a("Google Homepage", href="https://www.google.com/")

runApp(
  list(ui = fluidPage(
    test
  ),
  server = function(input, output, session)
  )
)

【讨论】:

以上是关于有没有办法用 Shiny R 在 textInput 中放置超链接的主要内容,如果未能解决你的问题,请参考以下文章

r:在 Flexdashboard 中使用 Shiny 渲染 Kable

Shiny r-单击后如何禁用复选框组输入?

如何使用 R Shiny 映射大型数据集?

R Shiny - renderDataTable太慢渲染巨大的矩阵

r shiny - DataTableOutput - 颜色特定的行和列

如何知道(或指定)R shiny 使用的 localhost 端口(在本地运行时)