2

我正在尝试从我的 ASP.net MVC 站点提供 RSS 提要。pubdate 元素的一切正常。我似乎无法让 Rss20FeedFormatter 输出它。我认为它映射到 SyndicationFeed 对象上的 LastUpdatedDate 属性,但输出为 LastBuildDate。

有谁知道我如何使用 SyndicationFeed 和 Rss20FeedFormatter 在我的 RssFeed 中呈现 pubDate 节点?

   public class RssActionResult : ActionResult
    {
        public SyndicationFeed Feed { get; set; }
        public override void ExecuteResult(ControllerContext context)
        {
            context.HttpContext.Response.ContentType = "application/rss+xml";
            var rssFormatter = new Rss20FeedFormatter(Feed, false);
            using (var writer = XmlWriter.Create(context.HttpContext.Response.Output, new XmlWriterSettings{ Indent = true}))
                rssFormatter.WriteTo(writer);
        }
    }

我如何创建提要的示例。

new SyndicationFeed("Title", "Description", url, "test_id", publishDate, feedItems){ LastUpdatedTime = publishDate}
4

1 回答 1

4

似乎对象模型目前仅在项目上支持 pubDate,而不是在提要/频道上。您可以将其添加为 ElementExtension:

feed.ElementExtensions.Add("pubDate", "", DateTime.UtcNow.ToString("r"));

您只需要注意正确格式化日期,请看这里:RFC-1123 的 DateTime 给出了不准确的时区

于 2012-05-12T08:51:36.370 回答