通过xslt转换转换为output.XML的XML文件

通过xslt转换转换为output.XML的XML文件,xml,xslt,xpath,Xml,Xslt,Xpath,artworks.xml文件: <artworks> <artwork> <title>Adoration of the Magi</title> <author>GHIRLANDAIO, Domenico</author> <date>1487</date> <technique>Tempera on wood, diameter: 171 cm<

artworks.xml文件:

<artworks>
  <artwork>
    <title>Adoration of the Magi</title>
    <author>GHIRLANDAIO, Domenico</author>
    <date>1487</date>
    <technique>Tempera on wood, diameter: 171 cm</technique>
    <location>Galleria degli Uffizi, Florence</location>
    <form>painting</form>
    <type>religious</type>
  </artwork>
</artworks>

三博士来朝
吉兰代奥,多梅尼科
1487
木材上的蛋彩画,直径:171厘米
佛罗伦萨德格利乌菲齐画廊
绘画
宗教的
author.xml文件:

<authors>
  <author>
    <name>AMADEO, Giovanni Antonio</name>
    <born-died>b. ca. 1447, Pavia, d. 1522, Milano</born-died>
    <nationality>Italian</nationality>
   <biography>Giovanni Antonio Amadeo was an Italian early Renaissance sculptor</biography>
  </author>
<authors>
<authors>
   <author>
      <name>AMADEO, Giovanni Antonio</name>
      <born-died>b. ca. 1447, Pavia, d. 1522, Milano</born-died>
      <nationality>Italian</nationality>
      <biography>Giovanni Antonio Amadeo was an Italian early Renaissance sculptor</biography>
     <artworks form="architecture">
        <artwork date="1473">
           <title>Faهade of the church</title>
           <technique>Marble</technique>
           <location>Certosa, Pavia</location>
        </artwork>
     </artworks>
   </author>
</authors>

阿马迪奥,乔瓦尼·安东尼奥
B约1447年,帕维亚,哥伦比亚特区。1522年,米兰
意大利人
乔瓦尼·安东尼奥·阿马迪奥是意大利文艺复兴早期的雕塑家
output.xml文件:

<authors>
  <author>
    <name>AMADEO, Giovanni Antonio</name>
    <born-died>b. ca. 1447, Pavia, d. 1522, Milano</born-died>
    <nationality>Italian</nationality>
   <biography>Giovanni Antonio Amadeo was an Italian early Renaissance sculptor</biography>
  </author>
<authors>
<authors>
   <author>
      <name>AMADEO, Giovanni Antonio</name>
      <born-died>b. ca. 1447, Pavia, d. 1522, Milano</born-died>
      <nationality>Italian</nationality>
      <biography>Giovanni Antonio Amadeo was an Italian early Renaissance sculptor</biography>
     <artworks form="architecture">
        <artwork date="1473">
           <title>Faهade of the church</title>
           <technique>Marble</technique>
           <location>Certosa, Pavia</location>
        </artwork>
     </artworks>
   </author>
</authors>

阿马迪奥,乔瓦尼·安东尼奥
B约1447年,帕维亚,哥伦比亚特区。1522年,米兰
意大利人
乔瓦尼·安东尼奥·阿马迪奥是意大利文艺复兴早期的雕塑家
教堂的正面
大理石
塞托萨,帕维亚
artworks.xml artwork author是一个外键,引用authors.xml author 条目

我想合并这两个XML文档并创建一个新的XML文件,其中 应为每位作者存储以下信息:姓名、出生、死亡、国籍、, 传记和所有的艺术作品。艺术品按形式分组,然后按日期排序。对于 每个艺术品、标题、技术和位置都被存储


它是challanging:)

我使用函数得到了您问题的合并部分:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes" method="xml" />
    <xsl:template match="authors">
        <authors>
            <xsl:for-each select="author">
                <author>
                    <xsl:copy-of select="name" />
                    <xsl:copy-of select="born-died" />
                    <xsl:copy-of select="nationality" />
                    <xsl:copy-of select="biography" />
                    <xsl:variable name="name" select="name" />
                    <artworks>
                        <xsl:for-each select="document('artworks.xml')//artwork[author=$name]">
                        <artwork>
                            <xsl:copy-of select="title" />
                            <xsl:copy-of select="date" />
                            <xsl:copy-of select="technique" />
                            <xsl:copy-of select="location" />
                            <xsl:copy-of select="form" />
                            <xsl:copy-of select="type" />
                        </artwork>
                        </xsl:for-each>
                    </artworks>
                </author>
            </xsl:for-each>
        </authors>
    </xsl:template>
</xsl:stylesheet>

这就成功了。它演示了许多有用的XSLT技术—扩展标识转换、Muenchian分组、使用
document()
合并辅助文档中的数据、抑制空元素的输出—这些技术值得进行完整的研究:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:variable name="authors"
                select="document('authors.xml')/authors/author"/>
  <xsl:variable name="artworks"
                select="/artworks/artwork"/>

  <!-- use Muenchian grouping to create a list of all distinct form values -->
  <xsl:key name="form-key"
           match="/artworks/artwork/form"
           use="."/>
  <xsl:variable name="forms"
                select="/artworks/artwork/form[generate-id(.) = generate-id(key('form-key', .)[1])]"/>

  <xsl:template match="/">
    <authors>
      <xsl:apply-templates select="$authors"/>
    </authors>
  </xsl:template>

  <xsl:template match="author">
    <xsl:variable name="artworks-for-author"
                  select="$artworks[author=current()/name]"/>
    <!-- only create an author element if it will contain at least one artwork -->
    <xsl:if test="$artworks-for-author">
      <author>
        <xsl:apply-templates select="name|born-died|nationality|biography"/>
        <xsl:for-each select="$forms">
          <!-- only create an artworks element if there's at least one artwork with this form -->
          <xsl:variable name="artworks-with-form"
                        select="$artworks-for-author[form=current()]"/>
          <xsl:if test="$artworks-with-form">
            <artworks form="{current()}">
              <xsl:apply-templates select="$artworks-with-form">
                <xsl:sort select="date"/>
              </xsl:apply-templates>
            </artworks>
          </xsl:if>
        </xsl:for-each>
      </author>
    </xsl:if>
  </xsl:template>

  <xsl:template match="artwork">
    <xsl:apply-templates select="title|technique|location"/>
  </xsl:template>

  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

完整的解决方案:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:variable name="authors" select="document('author.xml')" />
    <xsl:variable name="artworks" select="/artworks/artwork" />
    <xsl:key name="byNameForm" match="artworks/artwork" 
                               use="concat(author, '|', form)" />
    <xsl:template match="/">
        <authors>
            <xsl:apply-templates select="$authors/*/author" />
        </authors>
    </xsl:template>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="author">
        <author>
            <xsl:apply-templates />
            <xsl:apply-templates select="$artworks[author=current()/name]" />
        </author>
    </xsl:template>
    <xsl:template match="artworks/artwork" />
    <xsl:template match="artworks/artwork[generate-id()=
            generate-id(key('byNameForm', concat(author, '|', form))[1])]">
        <artworks form="{form}">
            <xsl:apply-templates 
                select="key('byNameForm', concat(author, '|', form))"
                mode="form">
                <xsl:sort select="date" data-type="number" />
            </xsl:apply-templates>
        </artworks>
    </xsl:template>
    <xsl:template match="artworks/artwork" mode="form">
        <artwork date="{date}">
            <xsl:apply-templates select="title|technique|location" />
        </artwork>
    </xsl:template>
</xsl:stylesheet>

输入:

<artworks>
    <artwork>
        <title>Adoration of the Magi</title>
        <author>GHIRLANDAIO, Domenico</author>
        <date>1486</date>
        <technique>Tempera on wood, diameter: 171 cm</technique>
        <location>Galleria degli Uffizi, Florence</location>
        <form>painting</form>
        <type>religious</type>
    </artwork>
    <artwork>
        <title>Something</title>
        <author>AMADEO, Giovanni Antonio</author>
        <date>1484</date>
        <technique>Marble</technique>
        <location>Mars</location>
        <form>sculpture</form>
        <type>religious</type>
    </artwork>
    <artwork>
        <title>Something2</title>
        <author>AMADEO, Giovanni Antonio</author>
        <date>1487</date>
        <technique>Glue</technique>
        <location>New York</location>
        <form>sculpture</form>
        <type>secular</type>
    </artwork>
    <artwork>
        <title>Something3</title>
        <author>AMADEO, Giovanni Antonio</author>
        <date>1482</date>
        <technique>Some tech</technique>
        <location>Mars</location>
        <form>paper</form>
        <type>religious</type>
    </artwork>
</artworks>

三博士来朝
吉兰代奥,多梅尼科
1486
木材上的蛋彩画,直径:171厘米
佛罗伦萨德格利乌菲齐画廊
绘画
宗教的
某物
阿马迪奥,乔瓦尼·安东尼奥
1484
大理石
火星
雕塑
宗教的
什么
阿马迪奥,乔瓦尼·安东尼奥
1487
胶水
纽约
雕塑
世俗的
有些事
阿马迪奥,乔瓦尼·安东尼奥
1482
一些技术
火星
纸张
宗教的
以及:


阿马迪奥,乔瓦尼·安东尼奥
B约1447年,帕维亚,哥伦比亚特区。1522年,米兰
意大利人
乔瓦尼·安东尼奥·阿马迪奥早年是意大利人
文艺复兴时期雕塑家
吉兰代奥,多梅尼科
B约1447年,帕维亚,哥伦比亚特区。1522年,威尼斯
意大利人
不适用
输出:

<authors>
    <author>
        <name>AMADEO, Giovanni Antonio</name>
        <born-died>b. ca. 1447, Pavia, d. 1522, Milano</born-died>
        <nationality>Italian</nationality>
        <biography>Giovanni Antonio Amadeo was an Italian early
            Renaissance sculptor</biography>
        <artworks form="sculpture">
            <artwork date="1484">
                <title>Something</title>
                <technique>Marble</technique>
                <location>Mars</location>
            </artwork>
            <artwork date="1487">
                <title>Something2</title>
                <technique>Glue</technique>
                <location>New York</location>
            </artwork>
        </artworks>
        <artworks form="paper">
            <artwork date="1482">
                <title>Something3</title>
                <technique>Some tech</technique>
                <location>Mars</location>
            </artwork>
        </artworks>
    </author>
    <author>
        <name>GHIRLANDAIO, Domenico</name>
        <born-died>b. ca. 1447, Pavia, d. 1522, Venice</born-died>
        <nationality>Italian</nationality>
        <biography>N/A</biography>
        <artworks form="painting">
            <artwork date="1486">
                <title>Adoration of the Magi</title>
                <technique>Tempera on wood, diameter: 171 cm</technique>
                <location>Galleria degli Uffizi, Florence</location>
            </artwork>
        </artworks>
    </author>
</authors>

阿马迪奥,乔瓦尼·安东尼奥
B约1447年,帕维亚,哥伦比亚特区。1522年,米兰
意大利人
乔瓦尼·安东尼奥·阿马迪奥早年是意大利人
文艺复兴时期雕塑家
某物
大理石
火星
什么
胶水
纽约
有些事
一些技术
火星
吉兰代奥,多梅尼科
B约1447年,帕维亚,哥伦比亚特区。1522年,威尼斯
意大利人
不适用
三博士来朝
木材上的蛋彩画,直径:171厘米
佛罗伦萨德格利乌菲齐画廊

编辑:更新以按作者进行处理,这样即使没有任何艺术品的作者也会被包括在内。

+1非常好的答案:按作者+表单遍历作者并对艺术品进行分组。一些未成年人:如果要覆盖标识规则,请使用
而不是
,如果要使用推送样式,则可以像
select=“$artworks[generate-id()=generate id(key('byNameForm',concat(current()/name,|',form))[1])”这样一直执行
或者您可以为作者使用第二个键(这将在外部文档中添加一个键示例)。