gpt4 book ai didi

html - R Shiny : Change uiOutput wrapper

转载 作者:行者123 更新时间:2023-11-28 04:07:54 32 4
gpt4 key购买 nike

每次我使用 renderUI(服务器端)和 uiOutput(UI 端)时,html 都是由 div 包装的,我怎样才能用 span 包装它呢?

例如:

用户界面方面:

tags$p(uiOutput("my_variable"))

服务器端:

output$currentLev1 <- renderUI({return(input$my_variable)})

结果:

<div id="my_variable" class="shiny-html-output shiny-bound-output">my_variable</div>

期望的结果:

<span id="my_variable" class="shiny-html-output shiny-bound-output">my_variable</span>

(只需按跨度更改 div)

感谢帮助

最佳答案

使用参数 inline=T 创建一个 span 而不是一个 div:

> args(uiOutput)
function (outputId, inline = FALSE, container = if (inline) span else div,
...)
NULL

等等:

> uiOutput("test", inline=T)
<span id="test" class="shiny-html-output"></span>

关于html - R Shiny : Change uiOutput wrapper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42875740/

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