无法使用fileInput在Mac上上传多个文件

时间:2018-08-15 13:23:20

标签: r shiny

在Mac上,无法使用fileInput()上传多个文件。它适用于Windows和Linux。我还设置了参数multiple=T,但是我不能选择多个文件。这是一个工作脚本。

library(shiny)

runApp(list( 
ui = bootstrapPage( 
tags$h2("Upload test app"), 
fileInput("finput","Upload files",multiple=TRUE), 
tableOutput("contents"), 
), 
server = function(input, output) {

output$contents <- renderTable({ 
input$finput}) 

} 
))

谢谢。

0 个答案:

没有答案