114

您建议如何在 ASP.NET MVC 中处理 RSS 源?使用第三方库?使用 BCL 中的 RSS 内容?只是制作一个呈现 XML 的 RSS 视图?还是完全不同的东西?

4

5 回答 5

150

.NET 框架公开了处理联合的类:SyndicationFeed 等。因此,与其自己进行渲染或使用其他一些建议的 RSS 库,为什么不让框架来处理它呢?

基本上,您只需要以下自定义 ActionResult 即可:

public class RssActionResult : ActionResult
{
    public SyndicationFeed Feed { get; set; }

    public override void ExecuteResult(ControllerContext context)
    {
        context.HttpContext.Response.ContentType = "application/rss+xml";

        Rss20FeedFormatter rssFormatter = new Rss20FeedFormatter(Feed);
        using (XmlWriter writer = XmlWriter.Create(context.HttpContext.Response.Output))
        {
            rssFormatter.WriteTo(writer);
        }
    }
}

现在在您的控制器操作中,您可以简单地返回以下内容:

return new RssActionResult() { Feed = myFeedInstance };

我的博客上有一个完整的示例http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/

于 2009-01-11T16:34:26.927 回答
65

这是我的建议:

  1. 创建一个名为 RssResult 的类,该类继承抽象基类 ActionResult。
  2. 重写 ExecuteResult 方法。
  3. ExecuteResult 具有由调用者传递给它的 ControllerContext,您可以通过它获取数据和内容类型。
  4. 将内容类型更改为 rss 后,您需要将数据序列化为 RSS(使用您自己的代码或其他库)并写入响应。

  5. 在要返回 rss 的控制器上创建一个操作,并将返回类型设置为 RssResult。根据您想要返回的内容从模型中获取数据。

  6. 然后对该操作的任何请求都将收到您选择的任何数据的 rss。

这可能是返回 rss 的最快和可重用的方式,它对 ASP.NET MVC 中的请求作出响应。

于 2008-08-15T03:12:49.623 回答
34

我同意哈克德的观点。我目前正在使用 MVC 框架实现我的站点/博客,并且我采用了为 RSS 创建新视图的简单方法:

<%@ Page ContentType="application/rss+xml" Language="C#" AutoEventWireup="true" CodeBehind="PostRSS.aspx.cs" Inherits="rr.web.Views.Blog.PostRSS" %><?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>ricky rosario's blog</title>
<link>http://<%= Request.Url.Host %></link>
<description>Blog RSS feed for rickyrosario.com</description>
<lastBuildDate><%= ViewData.Model.First().DatePublished.Value.ToUniversalTime().ToString("r") %></lastBuildDate>
<language>en-us</language>
<% foreach (Post p in ViewData.Model) { %>
    <item>
    <title><%= Html.Encode(p.Title) %></title>
    <link>http://<%= Request.Url.Host + Url.Action("ViewPostByName", new RouteValueDictionary(new { name = p.Name })) %></link>
    <guid>http://<%= Request.Url.Host + Url.Action("ViewPostByName", new RouteValueDictionary(new { name = p.Name })) %></guid>
    <pubDate><%= p.DatePublished.Value.ToUniversalTime().ToString("r") %></pubDate>
    <description><%= Html.Encode(p.Content) %></description>
    </item>
<% } %>
</channel>
</rss>

欲了解更多信息,请查看(无耻插件)http://rickyrosario.com/blog/creating-an-rss-feed-in-asp-net-mvc

于 2008-08-17T15:05:47.177 回答
13

另一种疯狂但有其优势的方法是使用普通的 .aspx 视图来呈现 RSS。在您的操作方法中,只需设置适当的内容类型。这种方法的一个好处是很容易理解正在渲染的内容以及如何添加自定义元素,例如地理位置。

再说一次,列出的其他方法可能更好,我只是没有使用它们。;)

于 2008-08-15T05:49:33.317 回答
8

我从 Eran Kampf 和 Scott Hanselman vid(忘记链接)那里得到了这个,所以它与这里的其他一些帖子略有不同,但希望对您有所帮助并准备好复制粘贴作为示例 rss 提要。

从我的博客

伊兰·坎普夫

using System;
using System.Collections.Generic;
using System.ServiceModel.Syndication;
using System.Web;
using System.Web.Mvc;
using System.Xml;

namespace MVC3JavaScript_3_2012.Rss
{
    public class RssFeed : FileResult
    {
        private Uri _currentUrl;
        private readonly string _title;
        private readonly string _description;
        private readonly List<SyndicationItem> _items;

        public RssFeed(string contentType, string title, string description, List<SyndicationItem> items)
            : base(contentType)
        {
            _title = title;
            _description = description;
            _items = items;
        }

        protected override void WriteFile(HttpResponseBase response)
        {
            var feed = new SyndicationFeed(title: this._title, description: _description, feedAlternateLink: _currentUrl,
                                           items: this._items);
            var formatter = new Rss20FeedFormatter(feed);
            using (var writer = XmlWriter.Create(response.Output))
            {
                formatter.WriteTo(writer);
            }
        }

        public override void ExecuteResult(ControllerContext context)
        {
            _currentUrl = context.RequestContext.HttpContext.Request.Url;
            base.ExecuteResult(context);
        }
    }
}

和控制器代码....

    [HttpGet]
public ActionResult RssFeed()
{
    var items = new List<SyndicationItem>();
    for (int i = 0; i < 20; i++)
    {
        var item = new SyndicationItem()
        {
            Id = Guid.NewGuid().ToString(),
            Title = SyndicationContent.CreatePlaintextContent(String.Format("My Title {0}", Guid.NewGuid())),
            Content = SyndicationContent.CreateHtmlContent("Content The stuff."),
            PublishDate = DateTime.Now
        };
        item.Links.Add(SyndicationLink.CreateAlternateLink(new Uri("http://www.google.com")));//Nothing alternate about it. It is the MAIN link for the item.
        items.Add(item);
    }

    return new RssFeed(title: "Greatness",
                       items: items,
                       contentType: "application/rss+xml",
                       description: String.Format("Sooper Dooper {0}", Guid.NewGuid()));

}
于 2013-04-10T17:19:23.120 回答