Add a Table :

Bind Data:

In the export Button :
# 直接导出excel
component= self.getSibling("Table")
dataset= component.props.data
csv = system.dataset.toCSV(dataset)
system.perspective.download("myExport.csv",csv)
But when I open the download file, it show ArrayWrapper?

