请帮助我....任何插件都在那里..?
我搜索了在angularjs中导出excel和PDF。使用ng-grid。
将angular-grid数据导出为angularjs中的CSV和PDF格式
答案 0 :(得分:6)
对于csv导出,您可以找到 ngGridCsvExportPlugin here
只是在对脚本的引用中,将ngGridCsvExportPlugin添加到gridOptions
(并通过将 showFooter:true 添加到gridOption来激活页脚)
$scope.gridOptions = {
data: 'myData',
plugins: [new ngGridCsvExportPlugin()],
showFooter: true,
};
可以在here
找到可以在工作中看到它的基本插件答案 1 :(得分:4)
您现在不需要任何外部插件。 ng grid现在调用新版本UI-Grid具有本机支持。方法名称为csvExport和pdfExport。
答案 2 :(得分:2)
如果你能够做一些角度以外的事情,你可以使用https://github.com/Ziv-Barber/officegen作为excel。有关pdf,请参见https://stackoverflow.com/questions/18476921/angularjs-generating-a-pdf-client-side。
答案 3 :(得分:1)
我使用了jsPDF。这是最简单的。
将其包含在html
:
<script src="jspdf.min.js"></script>
<!-- script src="jspdf.debug.js"></script--><!-- for development -->
使用 1 :
var doc = new jsPDF();
doc.text(20, 20, 'Hello world.');
doc.save('Test.pdf');
并将您的按钮或其他任何内容绑定到此代码。
高级提示
我还发现jsPDF-AutoTable插件for-jsPDF非常有用。
将其包含在html
:
<script src="jspdf.plugin.autotable.js"></script>
在controller
中,使用jsPDF-AutoTable插件将数据从ng-grid
数据传输到jsPDF。
假设您定义了ng-grid
表:
$scope.gridOptions = {
data: 'myData',
columnDefs: [
{field: 'user', displayName: 'User' /*,...*/ },
{field: 'email', displayName: 'Email' /*,...*/ },
{field: 'favoriteShruberry', displayName: 'Favorite Shrubbery' /*,...*/ }
]
};
...然后,在生成pdf
:
var columns = [];
var rows = [];
// copy ng-grid's titles to pdf's table definition:
var allColumnDefs = $scope.gridOptions.columnDefs;
for ( var columnIdx in allColumnDefs ) {
var columnDef = allColumnDefs[columnIdx];
var newColumnDef = {
title: columnDef.displayName,
dataKey: columnDef.field
};
columns.push(newColumnDef);
}
// copy ng-grid's actual data to pdf's table:
var allRecords = $scope.myData;
for ( var recordIdx in allRecords ) {
var record = allRecords[recordIdx];
var newRow = {};
for ( var columnIdx in allColumnDefs ) {
var columnDef = allColumnDefs[columnIdx];
var value = record[columnDef.field];
if (value !== null) {
newRow[columnDef.field] = value;
}
}
rows.push(newRow);
}
var docName = 'favoriteShrubberies.pdf';
var pdfStyle = { styles: { overflow: 'linebreak' } } // this handles cells that contain really long text like in this comment, by auto-inserting a
// line break inside the cell, causing the whole line's height to increase accordingly
var doc = new jsPDF('p', 'pt'); // currently supports only 'pt'
doc.autoTable(columns, rows, pdfStyle);
doc.save(docName);
1 示例直接来自jsPDF GitHub repo
答案 4 :(得分:0)