0

我是一名业余爱好者,最近开始使用 XML 和 XSLT。我被要求从下面的 XML 制作一个 XSLT 文件。

 <?xml version="1.0" encoding="UTF-8" ?>
 <event>
 <title>Test 1</title>
 <description>The first test</description>
 <location>
<postalcode>A1A 1A1</postalcode>
<city>Vancouver</city>
<province>BC</province>
<streetaddress>Arina street east</streetaddress>
 </location>
 <attendees>
<name>John</name>
<email>example@gmail.com</email>
<phone>778777777</phone>
 </attendees>
 </event>

我制作了这个 XSLT 文件

<?xml version="1.0" encoding="utf-8"?>
<!-- event.xsl -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
 <html>
   <head><title><xsl:value-of select="title"/></title></head>
 <body>
 <xsl:apply-templates />
 </body>
 </html>
 </xsl:template>

 <xsl:template match="event">
 <h2><xsl:value-of select="title"/></h2>
 <xsl:apply-templates />
 </xsl:template>

 <xsl:template match="description">
 <p><xsl:value-of select="description"/></p>
 <xsl:apply-templates />
 </xsl:template>

 <xsl:template match="location">
 <p>
<xsl:value-of select="streetaddress"/>
<xsl:value-of select="city"/>
<xsl:value-of select="province"/>
<xsl:value-of select="postalcode"/> 
</p>
<xsl:apply-templates />
</xsl:template>

<xsl:template match="attendees">
<xsl:for-each select="event/attendees">
<p>
<xsl:value-of select="name"/>
<xsl:value-of select="email"/>
<xsl:value-of select="phone"/>
</p>
</xsl:for-each>
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>

这是生成的 HTML

 <html>
  <head>
  <META http-equiv="Content-Type" content="text/html; charset=UTF-16">
   <title></title></head>
  <body>
   <h2>Test 1</h2>
     Test 1
   <p></p>The first test
   <p>Arina street eastVancouverBCA1A 1A1</p>
   A1A 1A1
   Vancouver
   BC
   Arina street east

John
example@gmail.com
778777777
 </body>
 </html>

这是我正在寻找的所需 html

<html>
<head>
<title>Test 1</title>
<body>
<h2>Test 1</h2>
<p>The first test</p>
<p>
Ariana Street East<br>
Vancouver<br>
BC , A1A 1A1<br>
</p>
<!-- repeat-->
<p>
Name:john<br>
Email:example@gmail.com<br>
Phone:77877777
</p>

<p>
Name:john2<br>
Email:example2@gmail.com<br>
Phone:77877778
</p>
</body>
</html>

当我制作一个 HTML 文件时,它有点混乱。你能让我知道我的错误在哪里吗?你有什么简单解释的文章吗?谢谢你

4

2 回答 2

1

我认为您在“参加”模式匹配中有错误:

<xsl:template match="attendees">
    <xsl:for-each select="event/attendees"> 
    <p>...

“for-each”指令是多余的,参加者模板是从活动模板中的“apply-templates”指令应用的。

第一个标题部分不起作用,将其更新为:

<title><xsl:value-of select="event/title"/></title>


在与会者和位置的行首添加字段名称并在行尾添加元素

<xsl:template match="location">
    <p>
        address:<xsl:value-of select="streetaddress"/><br> 
        city:<xsl:value-of select="city"/><br> 
        province:<xsl:value-of select="province"/><br> 
        postalcode:<xsl:value-of select="postalcode"/> <br> 
    </p>
    <xsl:apply-templates />
</xsl:template>
于 2013-06-13T06:47:11.043 回答
1

你可以试试这个稍微改编的版本:

<?xml version="1.0" encoding="utf-8"?>
<!-- event.xsl -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="/">
        <html>
            <head>
                <title>
                    <xsl:value-of select="event/title"/>
                </title>
            </head>
            <body>
                <xsl:apply-templates />
            </body>
        </html>
    </xsl:template>

    <xsl:template match="title" />

    <xsl:template match="event">
        <h2>
            <xsl:value-of select="title"/>
        </h2>
        <xsl:apply-templates />
    </xsl:template>

    <xsl:template match="description">
        <p>
            <xsl:value-of select="description"/>
        </p>
    </xsl:template>

    <xsl:template match="location">
        <p>
            <xsl:value-of select="streetaddress"/>
            <br/>
            <xsl:value-of select="city"/>
            <br/>
            <xsl:value-of select="province"/>
            <br/>
            <xsl:value-of select="postalcode"/>
            <br/>
        </p>
    </xsl:template>

    <xsl:template match="attendees">
        <p>
            Name: <xsl:value-of select="name"/><br/>
            Email: <xsl:value-of select="email"/><br/>
            Phone: <xsl:value-of select="phone"/><br/>
        </p>
    </xsl:template>
</xsl:stylesheet>

这将生成以下输出:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test 1</title>
</head>
<body>
<h2>Test 1</h2>

        <p></p>
        <p>Arina street east<br>Vancouver<br>BC<br>A1A 1A1<br></p>
        <p>
                        Name: John<br>
                        Email: example@gmail.com<br>
                        Phone: 778777777<br></p>
</body>
</html>
于 2013-06-13T11:04:13.133 回答