최신 웹 개발 튜토리얼
 

XSLT <xsl:message> Element


<전체 XSLT 요소 참조

정의 및 사용

<xsl:message> 요소의 출력에 메시지를 쓴다. 이 요소는 주로 오류를보고하는 데 사용됩니다.

이 요소는 다른 어떤 요소 XSL 함유 할 수있다 (<xsl:text>, <xsl:value-of>, etc.) .

terminate 속성은 당신에게 종료 또는 오류가 발생할 때 처리를 계속 중 하나를 선택할 수 있습니다.


통사론

<xsl:message terminate="yes|no">

  <!-- Content:template -->

</xsl:message>

속성

속성 기술
terminateyes
no
선택 과목. "yes" 메시지가 출력에 기입 된 후, 처리를 종료한다. "no" 메시지가 출력에 기입 된 후, 처리를 계속한다. 기본값은 "no" .

예 1

작가는 빈 문자열이 있는지 확인합니다. 예, 우리는 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>
  <xsl:for-each select="catalog/cd">
    <p>Title: <xsl:value-of select="title"/><br />
    Artist:
    <xsl:if test="artist=''">
      <xsl:message terminate="yes">
        Error: Artist is an empty string!
      </xsl:message>
    </xsl:if>
    <xsl:value-of select="artist"/>
    </p>
  </xsl:for-each>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

<전체 XSLT 요소 참조