用XSLT编写JSON

时间:2010-05-14 21:42:00

标签: json xslt

我正在尝试编写XSLT以将特定网页转换为JSON。下面的代码演示了Ruby如何进行这种转换,但是XSLT没有生成有效的JSON(数组中有太多的逗号) - 有谁知道如何编写XSLT来生成有效的JSON?

require 'rubygems'
require 'nokogiri'
require 'open-uri'

doc = Nokogiri::HTML(open('http://bbc.co.uk/radio1/playlist'))
xslt = Nokogiri::XSLT(DATA.read)

puts out = xslt.transform(doc)

# Now follows the XSLT
__END__
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
    <xsl:output method="text" encoding="UTF-8" media-type="text/plain"/>

    <xsl:template match="/">
        [
        <xsl:for-each select="//*[@id='playlist_a']//div[@class='artists_and_songs']//ul[@class='clearme']">
            {'artist':'<xsl:value-of select="li[@class='artist']" />','track':'<xsl:value-of select="li[@class='song']" />'},
        </xsl:for-each>
        ]
    </xsl:template>
</xsl:stylesheet>

3 个答案:

答案 0 :(得分:20)

for-each内的行中省略逗号并添加:

<xsl:if test="position() != last()">,</xsl:if>

这将为除最后一个项目之外的每个项目添加逗号。

答案 1 :(得分:5)

将XSLT拆分为单独的模板可以提高可读性。

<xsl:stylesheet
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  xmlns="http://www.w3.org/1999/xhtml"
>
  <xsl:output method="text" encoding="UTF-8" media-type="text/plain"/>

  <xsl:template match="/">
    <xsl:text>[</xsl:text>
    <xsl:apply-templates select="//div[@id='playlist_a']//ul[@class='clearme']" />
    <xsl:text>]</xsl:text>
  </xsl:template>

  <xsl:template match="ul">
    <xsl:text>{'artist':'</xsl:text><xsl:value-of select="li[@class='artist']" />
    <xsl:text>','track':'</xsl:text><xsl:value-of select="li[@class='song']" />
    <xsl:text>'}</xsl:text>
    <xsl:if test="position() &lt; last()">,</xsl:if>
  </xsl:template>
</xsl:stylesheet>

此外,艺术家和歌曲的值如果包含单引号就会破坏您的JSON,可能需要替换单引号。

答案 2 :(得分:0)

为什么不使用Sitecore Item Web API呢?它在SDN上可用,并作为一个简单的插件安装。安装后,您可以使用REST将项目作为JSON返回。可以搜索项目,您可以通过JSON设置可用的各个字段的安全性。您还可以使用REST和JSON实际创建,删除和更新Sitecore项目。