4

こんにちは、私の XML ドキュメントと XSLT は適切な HTML を生成するために機能していません...何が起こっているのですか?

これは基本的に XML ファイルであり、XML スキーマでこれを検証しましたが、

XSLT ファイルを使用して HTML ファイルに変換すると、コース カタログの見出しが 1 段落のテキスト全体で生成されます。

ここにはどのような問題がありますか?

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

  <!-- Generate HTML output -->
  <xsl:output method="html"/>

  <!-- The root template is defined here -->
  <xsl:template match="/">
<html>
  <head>
    <title>Courses Catalogue</title>
  </head>
  <body>
    <h2>Courses catalogue</h2>
    <xsl:apply-templates />
  </body>
</html>
 </xsl:template>

  <xsl:template match="course">

<p>
    <xsl:apply-templates select="code" />
    <xsl:apply-templates select="title" />
    <xsl:apply-templates select="year" />
    <xsl:apply-templates select="science" />
    <xsl:apply-templates select="area" />
    <xsl:apply-templates select="subject" />
    <xsl:apply-templates select="updated" />
    <xsl:apply-templates select="unit" />
    <xsl:apply-templates select="description" />
    <xsl:apply-templates select="outcomes" />
    <xsl:apply-templates select="incompatibility" />

</p>

  </xsl:template>

  <xsl:template match="code">

Course Code: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

  </xsl:template>

  <xsl:template match="title">

Course Title: <span style="color:#000">
<xsl:value-of select="." /> </span>
<br />

  </xsl:template>

  <xsl:template match="year">

Student Year: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

  </xsl:template>

  <xsl:template match="science">

Science Group: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>

  <xsl:template match="area">

Area: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

  </xsl:template>

   <xsl:template match="subject">

Course Subject: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>

   <xsl:template match="updated">

Page was updated in: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>

   <xsl:template match="unit">

Unit: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>

   <xsl:template match="description">

Course Description: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>  

   <xsl:template match="outcomes">

Course Outcomes: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>

  < xsl:template match="incompatibility">

Incompatible courses: <span style="color:#C66">
<xsl:value-of select="." /> </span>
<br />

   </xsl:template>  

 </xsl:stylesheet>

そして私のXMLファイル

<?xml version="1.0"?>
 <?xml-stylesheet type="text/xsl"
             href="courses.xsl"?>

<!--catalogue xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="catalogue.xsd"-->

<catalogue xmlns="file://"
       xmlns:xsi="http:/e"
       xsi:schemaLocation="file://">

  <course>

<code>COMP3410</code>
<title> Information Technology in Electronic Commerce </title>
<year>later year</year>
<science>C</science>
<area> Research School of Computer Science </area>
<subject> Computer Science </subject>
<updated>2012-03-13T13:12:00</updated>
<unit>6</unit>

ありがとう

4

1 に答える 1

5

問題は、すべての要素がfile://Volumes/u1234567/Assignment名前空間にあることですが、XSLTでは、テンプレートが名前空間のない要素と一致しています。

よく見ると<catalogue>、プレフィックスのない名前空間宣言が表示されます。<catalogue xmlns="file://Volumes/u1234567/Assignment"すべての子孫要素はその名前空間を継承します。

XSLTでプレフィックスを使用してその名前空間を定義してから、それらの要素を参照する場所を変更して、その名前空間プレフィックスを使用します。

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:a="file://Volumes/u1234567/Assignment">

    <!-- Generate HTML output -->
    <xsl:output method="html"/>

    <!-- The root template is defined here -->
    <xsl:template match="/">
        <html>
            <head>
                <title>Courses Catalogue</title>
            </head>
            <body>
                <h2>Courses catalogue</h2>
                <xsl:apply-templates />
            </body>
        </html>
    </xsl:template>

    <xsl:template match="a:course">

        <p>
            <xsl:apply-templates select="a:code" />
            <xsl:apply-templates select="a:title" />
            <xsl:apply-templates select="a:year" />
            <xsl:apply-templates select="a:science" />
            <xsl:apply-templates select="a:area" />
            <xsl:apply-templates select="a:subject" />
            <xsl:apply-templates select="a:updated" />
            <xsl:apply-templates select="a:unit" />
            <xsl:apply-templates select="a:description" />
            <xsl:apply-templates select="a:outcomes" />
            <xsl:apply-templates select="a:incompatibility" />

        </p>

    </xsl:template>

    <xsl:template match="a:code">

        Course Code:
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>

    <xsl:template match="a:title">

        Course Title: 
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>

    <xsl:template match="a:year">

        Student Year: <span style="color:#C66">
            <xsl:value-of select="." /> </span>
        <br />

    </xsl:template>

    <xsl:template match="a:science">

        Science Group: 
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>

    <xsl:template match="a:area">

        Area:
            <xsl:value-of select="." />
        <br />

    </xsl:template>

    <xsl:template match="a:subject">

        Course Subject: 
            <xsl:value-of select="." />
        <br />

    </xsl:template>

    <xsl:template match="a:updated">

        Page was updated in: 
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>

    <xsl:template match="a:unit">

        Unit: 
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>

    <xsl:template match="a:description">

        Course Description:
            <xsl:value-of select="." /> 
        <br />

    </xsl:template>  

    <xsl:template match="a:outcomes">

        Course Outcomes: 
            <xsl:value-of select="." />
        <br />

    </xsl:template>

    <xsl:template match="a:incompatibility">

    Incompatible courses: 
        <xsl:value-of select="." /> 
    <br />

    </xsl:template>  

</xsl:stylesheet>
于 2012-09-16T10:50:29.500 に答える