做导出操作时,需要按照查询的条件进行导出。需要使用到Form 表单中的值
使用:
$("#downloadButton").click(function(){
window.location.href="${rootUrl}app/statsum/cac/exportfile?"+$("#listForm").serialize();
});
listForm为表单id。
$("#listForm").serialize()方法。 可以传递整个查询所需要的条件。
做导出操作时,需要按照查询的条件进行导出。需要使用到Form 表单中的值
使用:
$("#downloadButton").click(function(){
window.location.href="${rootUrl}app/statsum/cac/exportfile?"+$("#listForm").serialize();
});
listForm为表单id。
$("#listForm").serialize()方法。 可以传递整个查询所需要的条件。