我正在使用 grails 的导出插件。我的控制器中有这段代码:
if(params?.format && params.format != "html"){
response.contentType = grailsApplication.config.grails.mime.types[params.format]
response.setHeader("Content-disposition", "attachment; filename=Pour-Schedule.${params.extension}")
List fields = ["id", "customer"]
Map labels = ["id": "Id", "customer": "Customer"]
Map parameters = [title: "Customer List", "column.widths": [0.2, 0.3]]
exportService.export(params.format, response.outputStream, Customer.list(params), fields, labels, [:], parameters) }
代码 column.widths 将在 excel、pdf 等上设置列的宽度。现在如何设置此列的高度?我尝试了 column.height 但它不工作,如 row.height。
任何人都可以帮助我吗?谢谢。