gpt4 book ai didi

asp.net - 在 asp.net core 1.0 中创建 RSS 提要

转载 作者:数据小太阳 更新时间:2023-10-29 02:21:44 25 4
gpt4 key购买 nike

我正在使用 Asp.net Core 1.0 MVC 6我正在尝试编写一个组件来从我的网站提供 RSS 提要。

我找到了 this post这表明 System.ServiceModel.Syndication 尚未移植到 ASP.NET CORE。

我无法针对完整的 .NET 框架。

建议写成xml解析器。然而,我正在努力了解可能需要的一切。

我已经构建了将我的数据转换为 XML 的功能,但现在需要更好地理解如何允许从 IActionResult 调用它(或者实际上如何生成可以放置在我的页面上的链接)。

我可以提供我的代码示例,但我不确定它是否有用。有谁能给我指出实现这一目标的正确方向吗?

我还在这篇文章中找到了一个答案,它指向一些想法,但我认为是 MVC6/Asp.net Core 之前的答案:RSS Feeds in ASP.NET MVC

最佳答案

// action to return the feed
[Route("site/GetRssFeed/{type}")]
public IActionResult GetRssFeed(ArticleStatusTypes type)
{
var feed = _rss.BuildXmlFeed(type);
return Content(feed, "text/xml");
}


public string BuildXmlFeed(ArticleStatusTypes type)
{
var key = $"RssFeed{Convert.ToInt32(type)}{_appInfo.ApplicationId}";
var articles =
_cache.GetCachedData(key) ??
_cache.SetCache(key, _service.GetItems(Convert.ToInt32(type), _appInfo.CacheCount));

StringWriter parent = new StringWriter();
using (XmlTextWriter writer = new XmlTextWriter(parent))
{
writer.WriteProcessingInstruction("xml-stylesheet", "title=\"XSL_formatting\" type=\"text/xsl\" href=\"/skins/default/controls/rss.xsl\"");

writer.WriteStartElement("rss");
writer.WriteAttributeString("version", "2.0");
writer.WriteAttributeString("xmlns:atom", "http://www.w3.org/2005/Atom");

// write out
writer.WriteStartElement("channel");

// write out -level elements
writer.WriteElementString("title", $"{_appInfo.ApplicationName} {type}" );
writer.WriteElementString("link", _appInfo.WebsiteUrl);
//writer.WriteElementString("description", Description);
writer.WriteElementString("ttl", "60");

writer.WriteStartElement("atom:link");
//writer.WriteAttributeString("href", Link + Request.RawUrl.ToString());
writer.WriteAttributeString("rel", "self");
writer.WriteAttributeString("type", "application/rss+xml");
writer.WriteEndElement();

if (articles != null)
{
foreach (var article in articles)
{
writer.WriteStartElement("item");

writer.WriteElementString("title", article.Title);
writer.WriteElementString("link", _appInfo.WebsiteUrl); // todo build article path
writer.WriteElementString("description", article.Summary);

writer.WriteEndElement();
}
}

// write out
writer.WriteEndElement();

// write out
writer.WriteEndElement();
}

return parent.ToString();
}

关于asp.net - 在 asp.net core 1.0 中创建 RSS 提要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38303957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com