嗨,我使用扩展 AbstractExcelView 创建 excel 表我写了以下代码
public ModelAndView exportToExcel(HttpServletRequest request, @RequestParam Map<String, ? extends Object> params, ShipmentDetailsSearchInput shipmentDetailsInputType) throws ParseException
{
Map<String, Object> excelMap = new HashMap<String, Object>();
return new ModelAndView("ExcelReport", UIErrorMessages.DATA, excelMap);
}
我不会在 Extjs Ajax 响应中获得文件下载成功的 Ajax 响应,因为 ModelAndView 在提交 ajax 调用中没有给出任何响应。
我们如何在 Spring 3 中编写没有 modeandview 的 restful excel-download 组件