首次尝试导出Excel时出错

时间:2018-06-27 12:27:55

标签: grails export

 def exportExcel(){
        if(!params.max) params.max = 10

        if(params?.type && params.type != "html"){

            response.contentType = grailsApplication.config.grails.mime.types[params.type]
            response.setHeader("Content-disposition", "attachment; filename=agents.${params.extension}")

            List fields = ["orgTypeId", "name"]
            Map labels = ["orgTypeId":"DP Id", "name":"Name"]

            def upperCase = { domain, value ->
                return value.toUpperCase()
            }

            Map parameters = [title: "Agent List", "column.widths":[0.15, 0.4]]
            Map formatters = [name: upperCase]

            exportService.export(params.type, response.outputStream, Agent.list(params), fields, labels, formatters, parameters)
        }

        render(view: 'index',model: [organizationTypeCount: Agent.count(), organizationType: Agent.list(params)])

    }

这是我导出Excel的代码。当我点击导出按钮。它显示失败的网络错误。 如果我恢复下载,它将被下载。

这是错误:java.lang.IllegalStateException: getOutputStream() has already been called for this response

enter image description here

enter image description here

请帮助我解决此问题。

1 个答案:

答案 0 :(得分:1)

您不能将附件数据写入输出流,然后呈现索引视图;试图将视图呈现为已将附件发送到的相同输出流。如果您删除呈现索引视图的行,则代码应该可以按预期工作。

如果您需要生成附件/下载并移动到浏览器中的另一个视图,则需要发送两个请求来完成此操作。