我正在尝试将带有左上角图像的 html 页面合并到 R 闪亮并从 R 工作室调用。问题是当 html 文件运行显示图像时执行 img 命令,但是在 R 中运行时,我只看到一个空白图像空间,但没有显示图像,如下面的快照所示。附件是R中带有快照的html和R代码。请帮助,谢谢,
HTML 代码
<html>
<head><title>
Dashboard
</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-
scalable=no">
<header>
<img src="C:/D DRIVE DATA/reliance R/Final Template
/wireframe/www/pepsi.png" height="43" width="145">
</img></header></head></html>
R代码
## app.R ##
library(shiny)
library(shinydashboard)
ui=
dashboardBody(
tags$link(rel="stylesheet", type="text/css",href="bootstrap.css",
htmlTemplate("template.html"
))
)
server= function(input, output)
{}
shinyApp(ui,server)