XML データ フィードを受け取り、それを json に変換し、フラット化して json オブジェクトを持たないようにする必要があります。複数回発生する要素を除いて、機能していますが、複数回発生します。apply-templates コマンドでなぜそれが起こっているのか理解していますが、それを修正する方法がわかりません。
元の XML は次のようになります。
<entry>
<id>542345255</id>
<published>2013-10-15T15:30:02Z</published>
<link rel="alternate" type="text/html" href="http://test.com"/>
<link rel="self" type="application/json" href="http://test1.com"/>
</entry>
望ましい結果は次のようになります。
{
"id" : "542345255",
"published" : "2013-10-15T15:30:02Z",
"link_rel" : "[alternate, self]",
"link_type" : "[text/html, application/json]",
"link_href" : "[http://test.com, http://test1.com]"
}
私のXSLTは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="utf-8"/>
<xsl:variable name="links" select="entry/link"/>
<xsl:template match="entry">
<xsl:text>{</xsl:text>
<xsl:apply-templates/>
<xsl:text>}</xsl:text>
</xsl:template>
<xsl:template match="id">
<xsl:text>"id" : "</xsl:text>
<xsl:value-of select="."/>
<xsl:text>", </xsl:text>
</xsl:template>
<xsl:template match="published">
<xsl:text>"postedTime" : "</xsl:text>
<xsl:value-of select="."/>
<xsl:text>", </xsl:text>
</xsl:template>
<xsl:template match="link">
<xsl:text>"link_rel" : "[</xsl:text>
<xsl:for-each select="$links">
<xsl:value-of select="./@rel"/>
<xsl:if test="position()!=last()">, </xsl:if>
</xsl:for-each>
<xsl:text>]", </xsl:text>
<xsl:text>"link_type" : "[</xsl:text>
<xsl:for-each select="$links">
<xsl:value-of select="./@type"/>
<xsl:if test="position()!=last()">, </xsl:if>
</xsl:for-each>
<xsl:text>]", </xsl:text>
<xsl:text>"link_href" : "[</xsl:text>
<xsl:for-each select="$links">
<xsl:value-of select="./@href"/>
<xsl:if test="position()!=last()">, </xsl:if>
</xsl:for-each>
<xsl:text>]", </xsl:text>
</xsl:template>
</xsl:stylesheet>
これで、私が得る結果は次のとおりです。
{
"id" : "542345255",
"published" : "2013-10-15T15:30:02Z",
"link_rel" : "[alternate, self]",
"link_type" : "[text/html, application/json]",
"link_href" : "[http://test.com, http://test1.com]"
"link_rel" : "[alternate, self]",
"link_type" : "[text/html, application/json]",
"link_href" : "[http://test.com, http://test1.com]"
}