gpt4 book ai didi

xslt - 如何在我的 XSLT 文本输出中包含节点 XML?

转载 作者:行者123 更新时间:2023-12-04 17:38:33 26 4
gpt4 key购买 nike

我正在尝试使用 XSLT(用于批量加载到 Postgres)将 XML 文件转换为平面的、以竖线分隔的文件。我希望输出中的最后一列是节点的实际 XML(用于额外的后处理和调试)。例如:

<Library>
<Book id="123">
<Title>Python Does Everythig</Title>
<Author>Smith</Author>
</Book>

<Book id="456">
<Title>Postgres is Neat</Title>
<Author>Wesson</Author>
</Book>
</Library>

应该生成
Python Does Everything|Smith|<Book id="123"><Title>Python Does Everythig</Title>Author>Smith</Author></Book>
Postgres is Neat|Wesson|<Book id="456"><Title>Postgres is Neat</Title><Author>Wesson</Author></Book>

我目前的 XSL 是
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*" />
<xsl:output method="text" omit-xml-declaration="yes" indent="no" />
<xsl:template match="//Book">
<xsl:value-of select="Title" />
<xsl:text>|</xsl:text>
<xsl:value-of select="Author" />

<!-- put in the newline -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>
</xsl:stylesheet>

最佳答案

我不确定这是否是推荐的解决方案,但您可以尝试将输出方法设置为 xml,然后只使用 xsl:copy-of 函数。

所以,下面的 XSLT

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
<xsl:strip-space elements="*" />
<xsl:output method="xml" omit-xml-declaration="yes" indent="no" />
<xsl:template match="//Book">
<xsl:value-of select="Title" />
<xsl:text>|</xsl:text>
<xsl:value-of select="Author" />
<xsl:text>|</xsl:text>
<xsl:copy-of select="." />
<!-- put in the newline -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>
</xsl:stylesheet>

应用于示例 XML 时,生成以下输出
Python Does Everythig|Smith|<Book id="123"><Title>Python Does Everythig</Title><Author>Smith</Author></Book>
Postgres is Neat|Wesson|<Book id="456"><Title>Postgres is Neat</Title><Author>Wesson</Author></Book>

关于xslt - 如何在我的 XSLT 文本输出中包含节点 XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10584282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com