MVCContrib XmlResult 不起作用
我有当前的控制器代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我主要只是使用了这个问题的 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