我正在尝试添加位于我的计算机上的图像,但它不起作用。我创建了一个 test.html 文件,当我用浏览器(firefox)打开它时,它会呈现图像。但是当我尝试对 Shiny 使用相同的代码时,它不起作用。下面是我正在尝试的代码:
#html Code
<!DOCTYPE html>
<html>
<head>
<title>
Corinthians
</title>
</head>
<body>
<p>
Vai corinthians
</p>
<img id="stats_logo" align="right" src="file:///H://lab/comunicacao/logo hyper/logo_hyp.jpg" />
</body>
</html>
## Shiny Code
headerPanel_2(
HTML(
'<div id="stats_header">
Relatório de Horas
<a href="http://hyperativa.com.br/" target="_blank">
<img id="stats_logo" align="right" alt="" src="file:///H://lab/comunicacao/logo hyper/logo_hyp.jpg" />
</a>
</div>'
), h3, "Relatório de Horas"
)
这是函数,headerPanel_2。我正在使用:
headerPanel_2 <- function(title, h, windowTitle=title) {
tagList(
tags$head(tags$title(windowTitle)),
h(title)
)
}
我认为,代码中的关键是“src="file:///H://lab/comunicacao/logo hyper/logo_hyp.jpg"。这有什么问题?我怎么说闪亮在哪里?文件位于我的计算机上?