我使用的是Sencha Grid Exporter插件,當它導出到Excel時,它工作的很好,我無法將它導出到CSV或任何其他類型從我的應用程序。導出爲CSV或除xlsx以外的任何其他類型的Sencha網格導出器失敗?
它在KitchenSink示例中列出的正常工作。
http://docs.sencha.com/extjs/6.2.1/classic/Ext.grid.plugin.Exporter.html
Ext.getCmp('grid').saveDocumentAs({
type: 'csv', // What other possible values can go here
title: globals.reportName,
fileName: 'myExport.csv'
});
有錯誤出現如下:
Uncaught Error: [Ext.createByAlias] Unrecognized alias: exporter.CSV
at Ext.Inventory.instantiateByAlias (app.js?_dc=1481916938387:13520)
at Ext.Factory.create (app.js?_dc=1481916938387:23199)
at constructor.getExporter (app.js?_dc=1481916938387:204593)
at constructor.saveDocumentAs (app.js?_dc=1481916938387:204520)
at constructor.saveDocumentAs (app.js?_dc=1481916938387:5355)
at constructor.onMenuitemClick (app.js?_dc=1481916938387:255332)
at constructor.fire (app.js?_dc=1481916938387:19281)
at constructor.doFireEvent (app.js?_dc=1481916938387:20248)
at constructor.doFireEvent (app.js?_dc=1481916938387:65488)
at constructor.prototype.doFireEvent (app.js?_dc=1481916938387:56438)
添加需求修復了這個問題。但是,你能澄清你的意思是通過手工導入出口商,我不知道如何手動使用SA。 – aMazing
@aMazing'要求'部分就是這樣做的。 – Alexander
沒錯。所以在我的情況下,我將不得不將所有用於該項目的類型的需求添加到SA中。您是否也從頭開始知道出口商是否支持PDF?或者無論如何,我可以讓它支持PDF – aMazing