13

是否有任何 scala 库可用于使用案例类等惯用功能生成 RSS 提要?如果它提供了与 Play 框架一起使用的助手,那就更好了。

4

1 回答 1

11

嗯,嵌入式 XML DSL 是一个惯用的(如果有点被抨击的话)特性,所以我不明白你为什么需要任何库支持。只需要一点 RSS XML,它是有效的 Scala,并放入一些可变内容:

val myRss = 
  <rss version="2.0">

  <channel>
  <title>An example RSS feed</title>
  <description>La dee daah</description>
  <link>http://www.example.com/rss</link>
  <lastBuildDate>Mon, 05 Oct 2012 11:12:55 =0100 </lastBuildDate>
  <pubDate>Tue, 06 Oct 2012 09:00:00 +0100</pubDate>


  {
    for (itemTitle <- List("foo", "bar", "baz")) yield {
      <item>
        <title>{itemTitle}</title>
        <description>This is an example of an Item</description>
        <link>http://www.example.com/item</link>
        <guid isPermaLink="false">123</guid>
        <pubDate>Tue, 06 Oct 2012 13:00:00 +0100</pubDate>
      </item>
    }
  }

</channel>
</rss>
于 2012-10-06T21:03:36.240 回答