최신 웹 개발 튜토리얼
 

XSLT <xsl:for-each> Element


<xsl:for-each> 요소는 XSLT에서 반복 할 수 있습니다.


<xsl:for-each> 요소

XSL <xsl:for-each> 요소는 특정 노드 집합의 모든 XML 요소를 선택하는 데 사용될 수있다 :

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

<xsl:template match="/">
  <html>
  <body>
  <h2>My CD Collection</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>Title</th>
      <th>Artist</th>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <td><xsl:value-of select="artist"/></td>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
»그것을 자신을 시도

Note: 의 값 select 속성은 XPath 식이다. XPath 표현식은 파일 시스템을 탐색처럼 작동; 여기서, 슬래시 (/) 서브 디렉토리를 선택한다.


출력 필터링

우리는 또한 기준에 추가하여 XML 파일로부터의 출력을 필터링 할 수있는 select 의 속성 <xsl:for-each> 엘리먼트.

<xsl:for-each select="catalog/cd[artist='Bob Dylan']">

법률 필터 연산자는 다음과 같습니다

  • = (같음)
  • ! = (not equal)
  • 및 LT; 이하
  • 한다 ~보다 큰

조정 된 XSL 스타일 시트를 살펴 보자 :

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

<xsl:template match="/">
  <html>
  <body>
  <h2>My CD Collection</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>Title</th>
      <th>Artist</th>
    </tr>
    <xsl:for-each select="catalog/cd[artist='Bob Dylan']">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <td><xsl:value-of select="artist"/></td>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
»그것을 자신을 시도