MVCContrib XmlResult 不起作用

发布于 2024-10-06 12:33:55 字数 287 浏览 2 评论 0原文

我有当前的控制器代码:

    public ActionResult BodyDay(int id, int year)
    {
        var repo = new Repo();
        return new  XmlResult(repo.getBodyDay(id, year));
    }

它曾经返回 xml 现在我返回的只是

    MvcContrib.ActionResults.XmlResult

I have the current controller code :

    public ActionResult BodyDay(int id, int year)
    {
        var repo = new Repo();
        return new  XmlResult(repo.getBodyDay(id, year));
    }

It used to return xml now all I get returned is

    MvcContrib.ActionResults.XmlResult

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

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

发布评论

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

评论(1

余生一个溪 2024-10-13 12:33:55

我主要只是使用了这个问题的 MVCContrib 源代码,这样我就可以调试它

从控制器的操作中返回 XML 作为 ActionResult?

它工作得像做梦一样,所以我继续解决下一个问题

I just used the raw code from the MVCContrib source from this question primarily so I could debug it

Return XML from a controller's action in as an ActionResult?

and it worked like a dream so i moved on to the next problem

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