gpt4 book ai didi

html - 删除 Shiny 应用程序标题中的 div

转载 作者:搜寻专家 更新时间:2023-10-31 08:14:10 25 4
gpt4 key购买 nike

我正在使用 shinydashboard,我想使用以下代码在标题中放置一张图片:

header <- dashboardHeader(
title = div(img(src = 'logo.png',
height = 60,
width = 120))
)

一切顺利,但是当我通过 chrome 打开应用程序时,在浏览器的标签中,它看起来很奇怪,如下所示。

enter image description here

有什么方法可以防止它在浏览器上显示并显示一些正常文本吗?

<div> <img src="logo.png" height="60" width="120"/>

最佳答案

由于您要覆盖仪表板的标题,因此您必须使用 tags$title 明确提及页面标题

tags$title('This is my page')

对于 shinydashboard:

ui <- dashboardPage(title = 'This is my title', header, sidebar, body, skin='red')

关于html - 删除 Shiny 应用程序标题中的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46560545/

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