Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/multithreading/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用Web API和Angular2导出到Excel 我在导出到excel时出错(文件已损坏),但在控制台上从web API数组返回“是” Web API操作 角度2组件方法-我使用文件保存保护程序保存excel文件 [HttpPost] _Angular_Epplus - Fatal编程技术网

使用Web API和Angular2导出到Excel 我在导出到excel时出错(文件已损坏),但在控制台上从web API数组返回“是” Web API操作 角度2组件方法-我使用文件保存保护程序保存excel文件 [HttpPost]

使用Web API和Angular2导出到Excel 我在导出到excel时出错(文件已损坏),但在控制台上从web API数组返回“是” Web API操作 角度2组件方法-我使用文件保存保护程序保存excel文件 [HttpPost] ,angular,epplus,Angular,Epplus,使用Web API和Angular2导出到Excel 我在导出到excel时出错(文件已损坏),但在控制台上从web API数组返回“是” Web API操作 角度2组件方法-我使用文件保存保护程序保存excel文件 [HttpPost] public FileResult ParentGridExportToExcel([FromBody]PromoDetail value) { var result = this._prom

使用Web API和Angular2导出到Excel 我在导出到excel时出错(文件已损坏),但在控制台上从web API数组返回“是” Web API操作 角度2组件方法-我使用文件保存保护程序保存excel文件
[HttpPost]
        public FileResult ParentGridExportToExcel([FromBody]PromoDetail value)
        {      
            var result = this._promodetailReportEngineRepository.ParentGridExportToExcel(promodetail);
            DataTable table = this.ConvertListToDataTable(result.PromoList);
            DataSet ds = new DataSet();
            ds.Tables.Add(table);
          return  this.ExportDataSetToExcel(ds, dt, false);

        }

    private FileResult ExportDataSetToExcel(DataSet ds, DataTable dt)
        {

            using (var xp = new ExcelPackage())
            {
                var ws = xp.Workbook.Worksheets.Add("Stores");
                ws.Cells[10, 1].LoadFromDataTable(dt, true);
                ws.Cells[35, 1].LoadFromDataTable(ds.Tables[0], true);    
                ws.Cells[ws.Dimension.Address].AutoFitColumns();    
                //xp.Save();
                return this.File(
                                xp.GetAsByteArray(),
                                "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
                                "PromoDetail10.xlsx");

            }
        }
  parentGridExportToExcel()
{
  this._promoapi.parentGridExportToExcel(this.pageSize, this.currentPageOffset, this.datewiseCalendarAttribute)
            .subscribe(
                res => {
                        this.extractData(res);
                }
            );


}
extractData(res: any){
       let myBlob: Blob = new Blob([(<any>res)._body], {type: 'vnd.openxmlformats-officedocument.spreadsheetml.sheet'}); // replace the type by whatever type is your response
    var fileURL = URL.createObjectURL(myBlob);
console.log(res);
            saveAs(myBlob, 'PromoDetail10.xlsx');
}
parentGridExportToExcel(pageSize: number, currentPageOffset: number)
    {
        let body = JSON.stringify({ Pagesize: pageSize,DatewiseCalendarAttribute: datewiseCalendarAttribute});
        let headers = new Headers({ 'Content-Type': 'application/json; charset=utf-8','responseType':'blob' });
        let options = new RequestOptions({
            headers: headers
        })      
        return this._http.post(this.baseUrl + 'ParentGridExportToExcel',body,options)
            .map(res => res)    
            .do(data => console.log('All: ' + JSON.stringify(data)))
            .catch(this.handleError)
    }