在MVC ASP.NET中使用/显示RSS源的简便方法

时间:2008-11-07 02:21:21

标签: asp.net-mvc model-view-controller

我是MVC框架的新手,想知道如何将RSS数据从控制器传递到视图。我知道有必要转换为某种类型的IEnumerable列表。我已经看到了创建匿名类型的一些示例,但无法弄清楚如何将RSS源转换为通用列表并将其传递给视图。

我不希望强类型,因为会有多个RSS提要调用。

任何建议。

4 个答案:

答案 0 :(得分:10)

我一直在玩一种在MVC中做WebParts的方法,它基本上是包含在webPart容器中的UserControls。我的一个测试用户控件是一个Rss Feed控件。我在Futures dll中使用RenderAction HtmlHelper扩展来显示它,以便调用控制器动作。我使用SyndicationFeed类来完成大部分工作

using (XmlReader reader = XmlReader.Create(feed))
{
    SyndicationFeed rssData = SyndicationFeed.Load(reader);

    return View(rssData);
 }

以下是控制器和UserControl代码:

Controller代码是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Xml;
using System.ServiceModel.Syndication;
using System.Security;
using System.IO;

namespace MvcWidgets.Controllers
{
    public class RssWidgetController : Controller
    {
        public ActionResult Index(string feed)
        {
            string errorString = "";

            try
            {
                if (String.IsNullOrEmpty(feed))
                {
                    throw new ArgumentNullException("feed");
                }
                    **using (XmlReader reader = XmlReader.Create(feed))
                    {
                        SyndicationFeed rssData = SyndicationFeed.Load(reader);

                        return View(rssData);
                    }**
            }
            catch (ArgumentNullException)
            {
                errorString = "No url for Rss feed specified.";
            }
            catch (SecurityException)
            {
                errorString = "You do not have permission to access the specified Rss feed.";
            }
            catch (FileNotFoundException)
            {
                errorString = "The Rss feed was not found.";
            }
            catch (UriFormatException)
            {
                errorString = "The Rss feed specified was not a valid URI.";
            }
            catch (Exception)
            {
                errorString = "An error occured accessing the RSS feed.";
            }

            var errorResult = new ContentResult();
            errorResult.Content = errorString;
            return errorResult;

        }
    }
}

UserControl

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Index.ascx.cs" Inherits="MvcWidgets.Views.RssWidget.Index" %>
<div class="RssFeedTitle"><%= Html.Encode(ViewData.Model.Title.Text) %> &nbsp; <%= Html.Encode(ViewData.Model.LastUpdatedTime.ToString("MMM dd, yyyy hh:mm:ss") )%></div>

<div class='RssContent'>
<% foreach (var item in ViewData.Model.Items)
   {
       string url = item.Links[0].Uri.OriginalString;
       %>
   <p><a href='<%=  url %>'><b> <%= item.Title.Text%></b></a>
   <%  if (item.Summary != null)
       {%>
        <br/> <%= item.Summary.Text %>
    <% }
   } %> </p>
</div>

将修改后的代码修改为具有类型化模型

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

namespace MvcWidgets.Views.RssWidget
{
    public partial class Index : System.Web.Mvc.ViewUserControl<SyndicationFeed>
    {
    }
}

答案 1 :(得分:6)

@Matthew - 完美的解决方案 - 作为代码背后的替代方案,它可以打破MVC概念,你可以使用:

<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<SyndicationFeed>" %>  
<%@ Import Namespace="System.ServiceModel.Syndication" %>

答案 2 :(得分:1)

使用MVC甚至不需要创建视图,您可以使用SyndicationFeed类直接将XML返回到提要阅读器。

(编辑).NET ServiceModel.Syndication - Changing Encoding on RSS Feed这是一种更好的方法。 (而是从此链接中剪断。)

http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx

public ActionResult RSS(string id)
{            
     return return File(MyModel.CreateFeed(id), "application/rss+xml; charset=utf-8");
}

在MyModel中

CreateFeed(string id)
{ 
        SyndicationFeed feed = new SyndicationFeed( ... as in the MS link above)

        .... (as in the MS link)

        //(from the SO Link)
        var settings = new XmlWriterSettings 
        { 
           Encoding = Encoding.UTF8, 
           NewLineHandling = NewLineHandling.Entitize, 
           NewLineOnAttributes = true, 
           Indent = true 
        };
        using (var stream = new MemoryStream())
        using (var writer = XmlWriter.Create(stream, settings))
        {
            feed.SaveAsRss20(writer);
            writer.Flush();
            return stream.ToArray();
         }


}

答案 3 :(得分:0)

rss是具有特殊格式的xml文件。您可以使用该通用格式设计数据集,并使用ReadXml方法读取rss(xml),并将uri作为文件的路径。然后你就可以从另一个clases中获得一个数据集。