我的脚本的 www 文件夹中有一系列“.jpg”文件。我想让 renderImage 根据我的 UI 的输入(日期、平台)来渲染具有名为“dateplatform.jpg”的文件名的图像。当我在 server.r 文件中尝试以下脚本时,应用程序未显示任何图像。有什么想法吗?
ui(部分)
fluidRow(
column(width=12,
imageOutput("platformimage")
)
)
服务器(部分)
filename <- reactive ({
paste(input$date, input$platform, sep="")
})
output$platformimage <- reactive({
renderImage({
list(src = filename(),
width = 600,
height = 600)
},deleteFile = FALSE)
})