【发布时间】:2017-01-13 09:43:50
【问题描述】:
我认为有以下 AjaxActionLink 代码:
@Ajax.ActionLink("Download", "DownloadDocument", "Document", new { Model.DocumentNumber, Model.DocumentName, TypeVisualization = TypeVisualization.Attachment }, new AjaxOptions { HttpMethod = "Post", UpdateTargetId = "modal-container", LoadingElementId = "ajaxLoading" }, new { @class = "modal-link" })
然后,在我的 DocumentController 中:
[HttpPost]
public async Task<ActionResult> DownloadDocument(DownloadFileRequest request)
{
DownloadFileCommand command = new DownloadFileCommand();
Mapper.Map(UserModel, command);
Mapper.Map(request, command);
var result = await documentRepository.DownloadDocument(command);
ContentDisposition cd = new ContentDisposition
{
FileName = Server.UrlPathEncode(result.DocumentName),
Inline = request.TypeVisualization == TypeVisualization.Inline
};
return new FileContentResultWithContentDisposition(result.Content, result.MimeType, cd);
}
方法被命中,但返回后,没有文件发送到浏览器并抛出异常:
System.Web.HttpException (0x80004005): A public action method 'DownloadDocument' was not found on controller Document
en System.Web.Mvc.Controller.HandleUnknownAction(String actionName)
en System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResultBase`1.End()
en System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
en System.Web.Mvc.Controller.<BeginExecute>b__15(IAsyncResult asyncResult, Controller controller)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResultBase`1.End()
en System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult)
en System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(IAsyncResult asyncResult)
en System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
en System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResultBase`1.End()
en System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult)
en System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result)
en System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
en System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
这里发生了什么?
【问题讨论】:
标签: asp.net-mvc-4 async-await asp.net-ajax