导出的模板路径路径来自报表管理
弹出的导出form标题
导出的数据格式
模板的唯一id
导出数据
参数数组或者参数对象
导出的文件名
导出的文件格式
function Button1_onClickScript(cxt:ScriptContext,btn:Button){
//方法1 参数对象
btn.getPage().components.DataExport1.export({param1:'paramValue1',param2:'paramValue2'});
//方法2 参数数组
btn.getPage().components.DataExport1.export([{name:'param1',value:'paramValue1'},{name:'param2',value:'paramValue2'}]);
}
Generated using TypeDoc
数据导出组件