0

我如何使用类似的东西将剑道电子表格中的 excel 保存到远程服务器中

var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet"); 
spreadsheet.saveAsExcel();

将excel保存到客户端机器。

4

1 回答 1

0

您可以excelExportKendo SpreadSheet.

使用以下代码:

excelExport: function(e) {
    // Prevent the default behavior which will prompt the user to save the generated file.
    e.preventDefault();

    // Get the Excel file as a data URL.
    var dataURL = new kendo.ooxml.Workbook(e.workbook).toDataURL();

    // Strip the data URL prologue.
    var base64 = dataURL.split(";base64,")[1];

    // Post the base64 encoded content to the server which can save it.
    $.post("/server/save", {
        base64: base64,
        fileName: "ExcelExport.xlsx"
    });
}

您可以在此处的 Kendo 文档中进一步了解此内容。此页面用于从 a 导出到 excel,Kendo Grid但对于SpreadSheet.

于 2017-06-18T11:14:56.287 回答