我正在构建一个闪亮的应用程序,并且有一个“下载按钮”!我也使用网状python,因为我有一个脚本可以根据应用程序中生成的图表为我生成PDF。我用来创建pdf的软件包是FPDF
这是我在python中用R创建我的pdf的函数
createPdf <- function(path){
source_python("plots/create_pdf.py")
pdf <- PDF()
pdf$alias_nb_pages()
pdf$add_page()
pdf$plot_charts_field('farmer', 'region', 'produto')
pdf$output(path + 'report.pdf', 'F')
}
这是我的下载按钮输出
output$download <- downloadHandler(
filename = 'report.pdf',
content = function(file) {
createPdf (file)
})
当我调用函数“ createPdf”时,我需要在参数中传递pdf下载路径,用户将选择目录,但我不知道该怎么做。有可能这样做吗?我该怎么办?
答案 0 :(得分:0)
我的问题是我需要将保存pdf的路径传递给python脚本。这是我对问题的解决方案:
ui.R
sidebarLayout
(
sidebarPanel(width = 3,
radioButtons(inputId = "choices", "Tipo", c("Individual", "Global"), selected = "Individual"),
uiOutput("Filters"), downloadButton('download', "Download")
)
server.R
makePdf <- function(filename){
source_python("plots/create_pdf.py")
if (input$choices == 'Individual')
{
pdf <- PDF()
pdf$alias_nb_pages()
pdf$add_page()
pdf$plot_charts_field('farmer', 'region', 'produto')
pdf$output(filename, 'F')
} else
{
source_python("plots/plot_mapa.py")
plot_mapa(alltables_filter())
pdf <- PDF()
pdf$alias_nb_pages()
pdf$add_page()
pdf$plot_charts_global()
pdf$output(filename, 'F')
}
}
output$download <- downloadHandler('report.pdf', function(theFile) {
makePdf(theFile)
})
这样,用户可以下载pdf