XSLT 需要非常简单的转换

发布于 2025-01-08 00:37:44 字数 950 浏览 0 评论 0原文

我需要对 xml 文件运行转换。这将是非常基础的,但在我有点迷失之前从未做过任何 xslt 工作。我有很多这样的问答,但一直没能解决?

我需要的是我的 xml 文件有一个架构引用,并且我需要将其更改为不同的架构引用。

<?xml version="1.0" encoding="UTF-8"?>
<Schedule xmlns="http://www.xxx.com/12022012/schedule/v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.xxx.com/12022012/schedule/v2 ../Schema/Schema_v2.xsd">
  <Interface_Header>
  </Interface_Header>
...
</Schedule>

我只想将 V2 更改为 V3,并保持文件的其余部分完好无损?听起来很简单,但我似乎无法弄清楚?我在这里尝试了一个简单的 xslt:-

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="node()|@*">
  <xsl:copy>
   <xsl:apply-templates select="node()|@*"/>
  </xsl:copy>
 </xsl:template>
</xsl:stylesheet>

但使用它输出我的所有值,没有任何 xml 标签。

副词中的感谢

I have a requirement to run a transform on a xml file. it is going to be very basic, but having never done any xslt work before I'm a bit lost. i've had a very of a lot of SO Q&A's but have not been able to work it out?

What I require is my xml file has a schema reference and I need to change it to a different schema reference.

<?xml version="1.0" encoding="UTF-8"?>
<Schedule xmlns="http://www.xxx.com/12022012/schedule/v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.xxx.com/12022012/schedule/v2 ../Schema/Schema_v2.xsd">
  <Interface_Header>
  </Interface_Header>
...
</Schedule>

I just want to alter the V2's to V3's, and keep the remainder of the file intact? It sounds very simple, but I cannot seem to figure this out? I tried a simple xslt here:-

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="node()|@*">
  <xsl:copy>
   <xsl:apply-templates select="node()|@*"/>
  </xsl:copy>
 </xsl:template>
</xsl:stylesheet>

but using this outputs all my values without any xml tags.

thanks in adv.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不寐倦长更 2025-01-15 00:37:44

用途:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xmlns:ns="new_namespace">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@xsi:schemaLocation">
        <xsl:attribute name="xsi:schemaLocation">
            <xsl:text>new_schema_location</xsl:text>
        </xsl:attribute>
    </xsl:template>

    <xsl:template match="node() | @*">
        <xsl:copy>
            <xsl:apply-templates select="node() | @*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="*">
        <xsl:element name="{local-name()}" namespace="ns">
            <xsl:apply-templates select="node() | @*"/>
        </xsl:element>
    </xsl:template>

</xsl:stylesheet>

应用于提供的 XML 生成

<Schedule xsi:schemaLocation="new_schema_location" xmlns="ns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Interface_Header>
    </Interface_Header>
    ...
</Schedule>

Use:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xmlns:ns="new_namespace">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@xsi:schemaLocation">
        <xsl:attribute name="xsi:schemaLocation">
            <xsl:text>new_schema_location</xsl:text>
        </xsl:attribute>
    </xsl:template>

    <xsl:template match="node() | @*">
        <xsl:copy>
            <xsl:apply-templates select="node() | @*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="*">
        <xsl:element name="{local-name()}" namespace="ns">
            <xsl:apply-templates select="node() | @*"/>
        </xsl:element>
    </xsl:template>

</xsl:stylesheet>

applied to provided XML produces

<Schedule xsi:schemaLocation="new_schema_location" xmlns="ns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Interface_Header>
    </Interface_Header>
    ...
</Schedule>
傲世九天 2025-01-15 00:37:44

当您不需要新的架构位置具有 xsi 命名空间时,则以下操作将起作用:

<xsl:output indent="yes" method="xml"/>

<xsl:template match="/">
    <xsl:apply-templates select="node()|@*"/>
</xsl:template>

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@*[local-name() = 'schemaLocation']">
    <xsl:attribute name="schemaLocation">newSchemaLocation</xsl:attribute>
</xsl:template>

当您确实需要再次使用 xsi 命名空间时,当然需要在模板中提及它,因此必须在样式表标题,如下所示,其中作为演示,local-name() 函数也被 name() 函数替换;前者包含命名空间,而后者不包含:

<xsl:stylesheet 
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

...

    <xsl:template match="@*[name() = 'xsi:schemaLocation']">
        <xsl:attribute name="xsi:schemaLocation">newSchemaLocation</xsl:attribute>
    </xsl:template>

</xsl:stylesheet>

请注意,这两种解决方案都依赖特定的模板路径 (@*[local-name()=...]) 来获得比不太具体的更高的优先级那些(@*)。

When you don't need the new schema location to have xsi namespace, then the following will work:

<xsl:output indent="yes" method="xml"/>

<xsl:template match="/">
    <xsl:apply-templates select="node()|@*"/>
</xsl:template>

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@*[local-name() = 'schemaLocation']">
    <xsl:attribute name="schemaLocation">newSchemaLocation</xsl:attribute>
</xsl:template>

When you do need to use the xsi namespace again, then of course it needs to be mentioned in the templates and thus has to be declared in the stylesheet header, as follows, where as a demonstration also the local-name() function is replaced by the name() function; the former includes namespace where the latter doesn't:

<xsl:stylesheet 
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

...

    <xsl:template match="@*[name() = 'xsi:schemaLocation']">
        <xsl:attribute name="xsi:schemaLocation">newSchemaLocation</xsl:attribute>
    </xsl:template>

</xsl:stylesheet>

Note that both solutions rely on specific template paths (@*[local-name()=...]) to have a higher priority than less specific ones (@*).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文