0

grails を使用していくつかのヘッダー パラメーターを使用してデータをエクスポートしているときに、いくつかの問題に直面しています。以下のコードを使用して、Excel のヘッダー パラメーターを追加しました。しかし、Excelヘッダーにヘッダーを追加していません

response.contentType = grailsApplication.config.grails.mime.types[format]           
response.setHeader( "Content-disposition",
                    "attachment; filename=mytext.${extensionfile}")

Map parameters = [
    title: "Configuration Summary", 
    "column.widths": [0.5, 0.4, 0.3,0.3],
    "header.enabled":"enable",
    "header.rows": 3,
    header: [
        ["Total Price", currency,price],
        ["Base Price",currency,baseprice]
    ],
    "header.parameters": [
        ["colspan0": 1,"colspan1": 1, "colspan2":2],  
        ["colspan0": 1, "colspan1": 1, "colspan2":2]
    ]
]

exportService.export( format, response.outputStream, subCat,
                      fields, labels, formatters, parameters)

これらのヘッダー パラメータを Excel に追加するのを手伝ってください。

4

1 に答える 1

0

header.enabled の値は true/false です。

于 2014-08-14T05:04:03.213 に答える