xml – Safari XSLT引擎在属性上丢失命名空间

前端之家收集整理的这篇文章主要介绍了xml – Safari XSLT引擎在属性上丢失命名空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个XSLT匹配某些属性,并将它们放在不同的命名空间中.这是一个简化版本:
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns="urn:test:ns1"
  5. xmlns:ns2="urn:test:ns2">
  6. <xsl:output method="xml" indent="no" encoding="UTF-8"/>
  7.  
  8. <!-- copy all nodes -->
  9. <xsl:template match="@*|node()">
  10. <xsl:copy>
  11. <xsl:apply-templates select="@*|node()"/>
  12. </xsl:copy>
  13. </xsl:template>
  14.  
  15. <xsl:template match="@*[starts-with(local-name(),'test-')]">
  16. <xsl:attribute name="ns2:{substring-after(local-name(),'-')}" namespace="urn:test:ns2">
  17. <xsl:value-of select="."/>
  18. </xsl:attribute>
  19. </xsl:template>
  20. </xsl:stylesheet>

以下是一些示例输入:

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <hello-world
  3. xmlns="urn:test:ns1"
  4. xmlns:ns3="urn:test:ns3"
  5. rootAttr="stays in implicit namespace"
  6. ns3:passMe="stays in the ns3 namespace"
  7. test-someRootAttr="goes into the ns2 namespace,pulls up ns declaration">
  8. <test
  9. defaultAttr="stays in implicit namespace"
  10. test-someAttr="goes into the ns2 namespace"
  11. ns3:namedAttr="stays in the ns3 namespace">
  12. Something
  13. </test>
  14. <ns3:cat
  15. defaultAttr="stays in the implicit namespace"
  16. test-catName="goes into the ns2 namespace"
  17. ns3:namedAttr="stays in the ns3 namespace">
  18. a cat
  19. </ns3:cat>
  20. </hello-world>

这是预期的输出

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <hello-world
  3. xmlns="urn:test:ns1"
  4. xmlns:ns2="urn:test:ns2"
  5. xmlns:ns3="urn:test:ns3"
  6. rootAttr="stays in implicit namespace"
  7. ns3:passMe="stays in the ns3 namespace"
  8. ns2:someRootAttr="goes into the ns2 namespace,pulls up ns declaration">
  9. <test
  10. defaultAttr="stays in implicit namespace"
  11. ns2:someAttr="goes into the ns2 namespace"
  12. ns3:namedAttr="stays in the ns3 namespace">
  13. Something
  14. </test>
  15. <ns3:cat
  16. defaultAttr="stays in the implicit namespace"
  17. ns2:catName="goes into the ns2 namespace"
  18. ns3:namedAttr="stays in the ns3 namespace">
  19. a cat
  20. </ns3:cat>
  21. </hello-world>

这可以在Chrome,Firefox,IE 9和Android上正常工作.但是在Safari中,我会得到以下输出

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <hello-world
  3. xmlns="urn:test:ns1"
  4. xmlns:ns3="urn:test:ns3"
  5. xmlns:ns2="urn:test:ns2"
  6. rootAttr="stays in implicit namespace"
  7. passMe="stays in the ns3 namespace"
  8. someRootAttr="goes into the ns2 namespace,pulls up ns declaration">
  9. <test
  10. defaultAttr="stays in implicit namespace"
  11. someAttr="goes into the ns2 namespace"
  12. namedAttr="stays in the ns3 namespace">
  13. Something
  14. </test>
  15. <ns3:cat
  16. defaultAttr="stays in the implicit namespace"
  17. catName="goes into the ns2 namespace"
  18. namedAttr="stays in the ns3 namespace">
  19. a cat
  20. </ns3:cat>
  21. </hello-world>

请注意,命名空间声明是正确的,但属性缺少所需的命名空间前缀.

所有这些代码都是github project,它由TravisCI构建,并使用Sauce Labs在不同的浏览器/操作系统上进行测试.

我可以用XSLT做一些不同的事情,这将是一个更正确的方式来完成这一点,这可能适用于所有的引擎?还是这只是Safari中的一个bug?任何解决方法的想法将不胜感激.

我认为这是一个bug.作为一个工作,您可以尝试在xsl:attribute namespace =“urn:test:ns2”上设置所需的命名空间.

猜你在找的XML相关文章