您如何推荐在ASP.NET MVC中处理RSS源?使用第三方库?使用BCL中的RSS东西?只是制作一个呈现XML的RSS视图?还是完全不同的东西?
答案 0 :(得分:148)
.NET框架公开了处理syndation的类: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/
上有完整的示例答案 1 :(得分:63)
以下是我的建议:
将内容类型更改为rss后,您需要将数据序列化为RSS(使用您自己的代码或其他库)并写入响应。
在要返回rss的控制器上创建一个操作,并将返回类型设置为RssResult。根据您要返回的内容从模型中获取数据。
然后,对此操作的任何请求都将收到您选择的任何数据的rs。
这可能是返回rss的最快和可重用的方式,它对ASP.NET MVC中的请求有响应。
答案 2 :(得分:34)
我同意Haacked。我目前正在使用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
答案 3 :(得分:12)
另一个疯狂的方法,但有其优势,是使用正常的.aspx视图来呈现RSS。在您的操作方法中,只需设置适当的内容类型即可。这种方法的一个好处是很容易理解渲染的内容以及如何添加地理定位等自定义元素。
然后,列出的其他方法可能会更好,我只是没有使用它们。 ;)
答案 4 :(得分:8)
我从Eran Kampf和Scott Hanselman vid那里得到了这个(忘记了链接),所以它与这里的其他帖子略有不同,但希望有用,并准备好复制粘贴作为示例rss feed。
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()));
}