内容简介:翻译自:https://stackoverflow.com/questions/20335684/asp-net-mvc-4-fileresult-in-error
我在控制器上有一个简单的Action,它返回一个PDF.
工作良好.
public FileResult GetReport(string id) { byte[] fileBytes = _manager.GetReport(id); string fileName = id+ ".pdf"; return File(fileBytes, MediaTypeNames.Application.Octet, fileName); }
当管理器无法获得报告时,我返回null或空字节[].
当结果设置为FileResult时,如何与浏览器通信存在问题?
我会将您的方法的返回类型更改为ActionResult.
public ActionResult GetReport(string id) { byte[] fileBytes = _manager.GetReport(id); if (fileBytes != null && fileBytes.Any()){ string fileName = id+ ".pdf"; return File(fileBytes, MediaTypeNames.Application.Octet, fileName); } else { //do whatever you want here return RedirectToAction("GetReportError"); } }
翻译自:https://stackoverflow.com/questions/20335684/asp-net-mvc-4-fileresult-in-error
以上所述就是小编给大家介绍的《c# – ASP.NET MVC 4 FileResult – 出错》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 如何避免空指针出错?
- 如何避免特效渲染出错?
- OmniROM:“Flex checkpolicy”出错
- Python安装软件包出错
- 让gulp watch出错时不退出
- 在Ubuntu上部署Fabric环境(+出错记录)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Two Scoops of Django
Daniel Greenfeld、Audrey M. Roy / CreateSpace Independent Publishing Platform / 2013-4-16 / USD 29.95
Two Scoops of Django: Best Practices For Django 1.5 is chock-full of material that will help you with your Django projects. We'll introduce you to various tips, tricks, patterns, code snippets, and......一起来看看 《Two Scoops of Django》 这本书的介绍吧!