我正在使用Shineddasjboardplus中的widgetUserBox功能。 它包含作为SRC的参数,在其中我无法更改要显示的图像的url /路径。
我尝试将jpg / jpeg和png格式的文件保存在WWW文件夹中,并尝试使用它们,但没有用。 我也尝试过使用Google提供的随机图片,但这也行不通。
代码如下:
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
widgetUserBox(
title = "Nadia Carmichael",
subtitle = "lead Developer",
type = 2,
src="https://adminlte.io/themes/AdminLTE/dist/img/user7128x128.jpg",
color = "yellow",
"Some text here!",
footer = "The footer here!"
)),
title = "Description Blocks"),
server = function(input, output) { }
)
有人可以帮我吗?
我不想显示默认图像,而是希望它根据不同的用户进行自定义。