Как я могу запретить downloadHandler запрашивать у пользователя местоположение для сохранения? Я хочу, чтобы он автоматически сохранялся в указанном месте без запроса - PullRequest
0 голосов
/ 19 апреля 2019

Я написал блестящее приложение, которое позволяет пользователям создавать и загружать отчеты html rmarkdown. Это работает.

Однако при создании отчета пользователю предлагается сохранить местоположение. Я, конечно, могу указать местоположение в имени файла, но пользователю все равно предлагается запрос.

В идеале, я бы хотел, чтобы пользователь нажимал кнопку загрузки и автоматически отправлял файл в определенное место.

Вот пример приложения, которое работает:

library(shiny)

shinyApp(
  ui = fluidPage(
    sliderInput("slider", "Slider", 1, 100, 50),
    downloadButton("report", "Generate report"),
  ),
  server = function(input, output) {
    output$report <- downloadHandler(
      # For PDF output, change this to "report.pdf"
      filename = paste("My name", ".html", sep=""),
      content = function(file) {
        # Copy the report file to a temporary directory before processing it, in
        # case we don't have write permissions to the current working dir 
        tempReport <- file.path(tempdir(), "report.Rmd")
        file.copy("report.Rmd", tempReport, overwrite = TRUE)

        # Set up parameters to pass to Rmd document
        params <- list(n = input$slider)

        # Knit the document, passing in the `params` list, and eval it in a
        # child of the global environment (this isolates the code in the document
        # from the code in this app).
        rmarkdown::render(tempReport, output_file = file,
                          params = params,
                          envir = new.env(parent = globalenv())
        )
      }
    )
  }
)

и скрипт rmarkdown:

---
title: "Dynamic report"
output: html_document
params:
  n: NA
---

  ```{r}
# The `params` object is available in the document.
params$n
```

A plot of `params$n` random points.

```{r}
plot(rnorm(params$n), rnorm(params$n))
```
...