需要 XLST 来根据另一个节点更改一个节点的值

发布于 2024-11-03 20:13:49 字数 714 浏览 0 评论 0原文

如果下面的 XML 文件中的 NameXYZ,我需要 XSLT 将 Enabled 的值更改为 False

我的 XML 文件是:

<MyRoot>
    <Category>
       <Name>XYZ</Name>
       <Location>mylocation</Location>
       <Enabled>True</Enabled>
    </Category>
    <Category>
       <Name>ABC</Name>
       <Location>mylocation1</Location>
       <Enabled>True</Enabled>
    </Category>
    <Category>
       <Name>DEF</Name>
       <Location>mylocation2</Location>
       <Enabled>True</Enabled>
    </Category>
</MyRoot>

I need XSLT to change the value of Enabled to False if the Name is XYZ in the below XML file.

My XML file is:

<MyRoot>
    <Category>
       <Name>XYZ</Name>
       <Location>mylocation</Location>
       <Enabled>True</Enabled>
    </Category>
    <Category>
       <Name>ABC</Name>
       <Location>mylocation1</Location>
       <Enabled>True</Enabled>
    </Category>
    <Category>
       <Name>DEF</Name>
       <Location>mylocation2</Location>
       <Enabled>True</Enabled>
    </Category>
</MyRoot>

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

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

发布评论

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

评论(1

潦草背影 2024-11-10 20:13:49

这就是我处理它的方式:

XSLT

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output indent="yes"/>
  <xsl:strip-space elements="*"/>

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

  <xsl:template match="Category[Name='ABC']/Enabled">
    <Enabled>False</Enabled>
  </xsl:template>

</xsl:stylesheet>

输出

<MyRoot>
   <Category>
      <Name>XYZ</Name>
      <Location>mylocation</Location>
      <Enabled>False</Enabled>
   </Category>
   <Category>
      <Name>ABC</Name>
      <Location>mylocation1</Location>
      <Enabled>True</Enabled>
   </Category>
   <Category>
      <Name>DEF</Name>
      <Location>mylocation2</Location>
      <Enabled>True</Enabled>
   </Category>
</MyRoot>

This is how I would handle it:

XSLT

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output indent="yes"/>
  <xsl:strip-space elements="*"/>

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

  <xsl:template match="Category[Name='ABC']/Enabled">
    <Enabled>False</Enabled>
  </xsl:template>

</xsl:stylesheet>

output

<MyRoot>
   <Category>
      <Name>XYZ</Name>
      <Location>mylocation</Location>
      <Enabled>False</Enabled>
   </Category>
   <Category>
      <Name>ABC</Name>
      <Location>mylocation1</Location>
      <Enabled>True</Enabled>
   </Category>
   <Category>
      <Name>DEF</Name>
      <Location>mylocation2</Location>
      <Enabled>True</Enabled>
   </Category>
</MyRoot>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文