gpt4 book ai didi

c# - 在 ActionResult 方法中抛出异常

转载 作者:行者123 更新时间:2023-12-02 21:40:19 28 4
gpt4 key购买 nike

我有一个带有上传 Controller 的 View ,它会触发此 ActionResult:

    [HttpPost]
public ActionResult ProcessSubmitUpload(HttpPostedFileBase attachments, Guid? idDocument)
{
//Validations
var xmlDocument = XDocument.Load(attachments.InputStream);
DocumentCommonHelper.SendFile(xmlDocument);
}

SendFile 方法:

  public static void SendCte(XDocument xmlDocument)
{
var client = new WsSoapClient();
client.InsertXML(xmlDocument);
}

如果出现问题,Web 服务将返回 SoapException,例如:“IDDocument 不存在”等等

但是在 MVC 中,当我调试时,如果 InsertXml 方法中出现问题,我无法捕获它,调试导航只会停止并抛出上传文件错误。

我想在我的操作中捕获 InsertXML 方法的返回消息,并将其返回到我的 View 。就像一个“警报”弹出窗口。我怎样才能做到这一点?

最佳答案

您可以将错误消息返回到 ModelState 对象中的 View 。该 View 可以使用 ValidationSummary 帮助器显示它:

[HttpPost]
public ActionResult ProcessSubmitUpload(HttpPostedFileBase attachments, Guid? idDocument)
{
//Validations
var xmlDocument = XDocument.Load(attachments.InputStream);
try
{
DocumentCommonHelper.SendFile(xmlDocument);
}
catch(Exception ex)
{
ModelState.AddModelError("ProcessSubmitUpload", ex.Message);
return View(new MyViewModel())
}
}

查看:

@using(Html.BeginForm("ProcessSubmitUpload", "MyController", FormMethod.Post))
{
@Html.ValidationSummary()
... etc.
}

关于c# - 在 ActionResult 方法中抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20570699/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com