我试图从数据库创建一个文件excel。
我尝试安装此插件.. transform-async-to-generator
我试图创建一个文件。 这是我的代码..
def test={
def city = City.list()
def headers = ['City Name', 'Description']
def withProperties = ['city', 'description']
new WebXlsxExporter().with {
setResponseHeaders(response)
fillHeader(headers)
add(city, withProperties)
save(response.outputStream)
}
}
和这样的结果..
https://github.com/TouK/excel-export
现在我正在尝试创建一个包含多个标题的excel文件。
像这样......例如:
H1 | class |
H2 | student |
H3 | subjects|
---------------
我的excel会喜欢这个
H1 | class |
H2 | student |
H3 | subjects |
H1 | 1A |
H2 | Milo |
H3 | Math |
H3 | Chemystry|
H3 | History |