无法将文件保存到闪亮的应用程序的服务器端

时间:2018-12-11 19:43:50

标签: r shiny shiny-server

我正在尝试在运行闪亮应用程序的服务器端保存文件,但是由于某些原因,当我尝试保存该文件时看不到路径。

这是我目前在闪亮的应用程序中拥有的代码

库(shinyFiles)

shinySaveButton(id = 'download.scores', label =  'Save scores', title = "Save file as...", filetype = "csv")

observe({
    volumes <- c("wd"="/home/rstudio/data")
    shinyFileSave(input, "download.scores", roots=volumes, session=session)
    fileinfo <- parseSavePath(volumes, input$download.scores)
    if (nrow(fileinfo) > 0) {
      write.csv(score.show$scores, as.character(fileinfo$datapath), row.names = F)
    }
  })

当我尝试保存它时,在对话框中看到空白路径。我在这里做什么错了?

enter image description here

0 个答案:

没有答案