根据用户输入以excel或csv格式下载。该代码仅适用于radioButtons中的预选值。如下所示,它适用于csv,因为selected = "csv"
。如果将其更改为xlsx,则仅适用于xlsx。用户应该可以选择,并且两个选项都应该可行。
也许值已缓存,我需要以某种方式强制进行更新。
library(shiny)
ui <- fluidPage(
h4("Download data"),
wellPanel(
fluidRow(
column(4, radioButtons("dl_data_file_type", "Format",
choices = c(excel = "xlsx",
csv = "csv"),
selected = "csv")),
column(5),
column(3, downloadButton("dl_data_dwnld_bttn"))
)))
server <- function(input, output) {
output$dl_data_dwnld_bttn <- {
downloadHandler(
filename = stringr::str_c(Sys.Date(), " Palim.", input$dl_data_file_type),
content = function(file){
x <- iris
if ( input$dl_data_file_type == "xlsx") {
writexl::write_xlsx(x, file)}
else if ( input$dl_data_file_type == "csv") {
readr::write_csv(x, file)}
})}}
shinyApp(ui = ui, server = server)
错误是excel文件仍以.csv结尾,无法由excel打开。
答案 0 :(得分:1)
您正在filename
参数中使用反应性值。在这种情况下,您必须将filename
设置为函数:
filename = function(){
stringr::str_c(Sys.Date(), " Palim.", input$dl_data_file_type)
}