将 text/xml 读入 ASP.MVC 控制器

发布于 2024-11-18 10:25:29 字数 200 浏览 3 评论 0原文

如何将文本/xml 读入 ASP.MVC 控制器上的操作?

我有一个 Web 应用程序,它可能会从两个不同的源接收 POSTed Xml,因此 Xml 的内容可能会有所不同。

我希望控制器上的默认操作能够读取 Xml,但是我很难了解如何首先将 Xml 放入操作中。

如果 Xml 一致,我可以使用 Model Binder,但这里不可能。

How do I read text/xml into an action on a ASP.MVC Controller?

I have a web application that may receive POSTed Xml from two different sources so the contents of the Xml may be different.

I want the default action on my controler to be able to read the Xml however I am struggling to see how I can get the Xml into the action in the first place.

If the Xml was consistent I could have used a Model Binder but thats not possible here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离去的眼神 2024-11-25 10:25:29

您可以从请求流中读取它:

[HttpPost]
public ActionResult Foo()
{
    using (var reader = new StreamReader(Request.InputStream))
    {
        string xml = reader.ReadToEnd();
        // process the XML
        ...
    }
}

并且要清理此操作,您可以为 XDocument 编写一个自定义模型绑定器:

public class XDocumentModeBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        return XDocument.Load(controllerContext.HttpContext.Request.InputStream);
    }
}

您可以在 Application_Start 中注册它:

ModelBinders.Binders.Add(typeof(XDocument), new XDocumentModeBinder());

最后:

[HttpPost]
public ActionResult Foo(XDocument doc)
{
    // process the XML
    ...
}

这显然更干净。

You could read it from the request stream:

[HttpPost]
public ActionResult Foo()
{
    using (var reader = new StreamReader(Request.InputStream))
    {
        string xml = reader.ReadToEnd();
        // process the XML
        ...
    }
}

and to cleanup this action you could write a custom model binder for a XDocument:

public class XDocumentModeBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        return XDocument.Load(controllerContext.HttpContext.Request.InputStream);
    }
}

which you would register in Application_Start:

ModelBinders.Binders.Add(typeof(XDocument), new XDocumentModeBinder());

and finally:

[HttpPost]
public ActionResult Foo(XDocument doc)
{
    // process the XML
    ...
}

which is obviously cleaner.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文