2

我正在尝试从 Word Press 博客中读取 rss2 提要。我找到了这方面的例子,包括我在这里为我的代码改编的例子。问题是它不读取 content:encoded 标签。我搜索并找到了其他遇到此问题的人,但似乎没有任何问题已解决。

我在一个带有 C# 代码的 asp.net 页面上使用转发器来显示数据。

问题似乎是http://purl.org/dc/elements/1.0/modules/content/中没有定义 content:encoded 标签我已经检查过它根本没有在那里列出。当我设置断点并检查值时,“内容”实际上是在获取另一个标签的值:“{0}”是第一篇文章被读入文章对象后的值。尽管它从未显示在中继器中。

我假设内容必须是一次在该 URL 上定义的,因为这应该是一次有效的。但现在没有。

没有将 XML 作为字符串读取并重新发明轮子来读取标签,有没有已知的方法可以解决这个问题?是否有我可以提供的链接来定义要使用的代码的内容标签?(我假设这是 URLS 的目的)。我可以用定义创建自己的页面吗?

这是后面的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml.Linq;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

        // Load the blog posts 
        string sURL1 = "http://www.stellman-greene.com/feed";
        string sURL2 = "http://arnottsuspension.com/?feed=rss2";
        XDocument ourBlog = XDocument.Load(sURL2);


        // Query the <item>s in the XML RSS data and select each one into a new Post()
        IEnumerable<Post> posts =
            from post in ourBlog.Descendants("item")
            select new Post(post);
        postRepeater.DataSource = posts;
        postRepeater.DataBind();




    }
    class Post
    {
        public string Title { get; private set; }
        public DateTime? Date { get; private set; }
        public string Url { get; private set; }
        public string Description { get; private set; }
        public string Creator { get; private set; }
        public string Content { get; private set; }

        private static string GetElementValue(XContainer element, string name)
        {
            if ((element == null) || (element.Element(name) == null))
                return String.Empty;
            return element.Element(name).Value;
        }

        public Post(XContainer post)
        {
            // Get the string properties from the post's element values
            Title = GetElementValue(post, "title");
            Url = GetElementValue(post, "guid");
            Description = GetElementValue(post, "description");
            Creator = GetElementValue(post,
                "{http://purl.org/dc/elements/1.1/}creator");
            Content = GetElementValue(post,
               "{http://purl.org/dc/elements/1.0/modules/content/}encoded");

            // The Date property is a nullable DateTime? -- if the pubDate element
            // can't be parsed into a valid date, the Date property is set to null
            DateTime result;
            if (DateTime.TryParse(GetElementValue(post, "pubDate"), out result))
                Date = (DateTime?)result;
        }

        public override string ToString()
        {
            return String.Format("{0} by {1}", Title ?? "no title", Creator ?? "Unknown");
        }
    }

}

这是 HTML/ASP:

   <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>


       <asp:Repeater ID="postRepeater" runat="server">
           <ItemTemplate>
               <tr>
                   <td><%# Eval("Title") %></td><br />
               </tr>
               <tr>
                   <td><%# Eval("Description") %></td><br />
               </tr>
               <tr>
                   <td><%# Eval("Content") %></td><br />
               </tr>
               <tr>
                   <td><a href="<%# Eval("URL") %>">Read More</a></td><br /><br />
               </tr>
           </ItemTemplate>


       </asp:Repeater>


    </div>
    </form>
</body>
</html>
4

1 回答 1

3

我找到了正确的名称空间(如果这是用于此的正确术语。我有:

http://purl.org/dc/elements/1.0/modules/content/

我将其替换为:

http://purl.org/rss/1.0/modules/content/

现在它可以工作了。

于 2014-04-30T16:32:08.547 回答