使用 Coldfusion SpreadsheetWrite 和 cfscript 创建多个工作表 [英] creating multiple sheets using Coldfusion SpreadsheetWrite and cfscript

查看:11
本文介绍了使用 Coldfusion SpreadsheetWrite 和 cfscript 创建多个工作表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 CF9、SpreadsheetWrite 和 cfscript 创建一个包含两张工作表的 Excel 文件.比如:

I'd like to create a single excel file with two sheets using CF9, SpreadsheetWrite and cfscript. Something like:

var data= spreadsheetNew( 'data' );
var key= spreadsheetNew( 'key');
spreadsheetAddRow( data, dataInfo );
spreadsheetAddRow( key, keyInfo );      
spreadsheetWrite( data, filePath );
spreadsheetWrite( key, filePath );

我没有找到解释如何将多张工作表合并到一个文件中的文档.这就是我发现的.

I don't find documentation that explains how to combine multiple sheets in one file. Here's what I find.

http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSe9cbe5cf462523a0-7b585809122c5a12c54-7fff.html

它指出可以将多张工作表写入一个文件".但这是否意味着一次不止一张纸尚不清楚.您可以使用标签来完成此操作,但我需要使用 cfscript.

It states that one can 'Write multiple sheets to a single file.' but whether that means more than one sheet at a time is not clear. You can accomplish this using tags but I need to use cfscript.

<cfspreadsheet action="update"  filename = "filePath" sheetname = "key" > 

如何使用 cfscript 编写上述基于标签的调用?

How does one write the above tag-based call using cfscript?

推荐答案

是的,从文档上看不是很清楚.SpreadsheetNew 使用单个工作表创建工作簿.要添加其他工作表,请使用 SpreadSheetCreateSheet 功能.在您可以操作新工作表之前,必须使用 SpreadSheetSetActiveSheet.以下是创建包含两张工作表的工作簿的快速示例:

Yes, it is not very clear from the documentation. SpreadsheetNew creates a Workbook with a single worksheet. To add additional sheets, use the SpreadSheetCreateSheet function. Before you can manipulate the new sheet, it must be made active with SpreadSheetSetActiveSheet. Here is a quick example of creating a workbook with two sheets:

<cfscript>
    // Create new workbook with one worksheet. 
    // By default this worksheet is active
    Workbook = SpreadsheetNew("Sheet1");
    // Add data to the currently active sheet
    SpreadSheetAddRow(Workbook, "Apples");
    SpreadSheetAddRow(Workbook, "Oranges");


    //Add second worksheet, and make it active
    SpreadSheetCreateSheet(Workbook, "Sheet2");
    // Add data to the second worksheet
    SpreadSheetSetActiveSheet(Workbook, "Sheet2");
    SpreadSheetAddRow(Workbook, "Music");
    SpreadSheetAddRow(Workbook, "Books");

    //Finally, save it to a file
    SpreadSheetWrite(Workbook, "c:/path/to/yourFile.xls", true);
</cfscript>

旁注,我不建议使用 <cfspreadsheet action="update">.最后我记得它有点问题.

Side note, I would not recommend using <cfspreadsheet action="update"> anyway. Last I recall it was a bit buggy.

这篇关于使用 Coldfusion SpreadsheetWrite 和 cfscript 创建多个工作表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆