我有一个 XSL,我需要按照以下方式生成输出:
<moo xmlns="http://api.example.com">
<foo>1358944586848</foo>
<bar>
<a>1</a>
<b>2</b>
<c>3</c>
</bar>
</moo>
我可以这样做:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://api.example.com">
<xsl:template match="/">
<xsl:element name="moo">
<!-- and so on -->
但是,我有点讨厌在我的 xsl 文件中使用 xsl 前缀,因为我觉得它很混乱。无论如何,使用 XPath 选择很容易,因为您可以根据xpath-default-namespace
需要设置要转换的任何内容。但element-default-namespace
据我所知,没有可用的,那么我怎样才能以一种好的方式生成想要的输出呢?
我知道我可以这样做:
<stylesheet version="2.0"
xmlns="http://www.w3.org/1999/XSL/Transform">
<template match="/">
<element name="moo" namespace="http://api.example.com">
<!-- and so on -->
但是我必须在我创建的每个元素上显式地设置这个命名空间,否则它们最终将使用 XSL 命名空间。那么有没有一种干净的方法来创建具有特定命名空间(没有前缀)的元素并且不触及 xsl 文件的默认命名空间?
更新:
认为也许namespace-alias
可以做一些事情,但无法弄清楚如何使用它。试过这个,但似乎对输出没有任何影响:
<stylesheet version="2.0"
xmlns="http://www.w3.org/1999/XSL/Transform"
xmlns:out="http://api.example.com">
<namespace-alias stylesheet-prefix="out" result-prefix=""/>
<template match="/">
<element name="out:moo">
<!-- and so on -->
事情可能没有按照namespace-alias
我的想法做:p
我使用的最终解决方案,基于 JLRishe 的回答
删除前缀.xsl
<?xml version="1.0" encoding="UTF-8"?>
<stylesheet version="2.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<template match="/">
<variable name="result">
<next-match />
</variable>
<apply-templates select="$result" mode="remove-prefixes" />
</template>
<template match="*" priority="1" mode="remove-prefixes">
<element name="{local-name()}" namespace="{namespace-uri()}">
<apply-templates select="@* | node()" mode="remove-prefixes" />
</element>
</template>
<template match="@*|node()" mode="remove-prefixes">
<copy>
<apply-templates select="@* | node()" mode="remove-prefixes" />
</copy>
</template>
</stylesheet>
主题.xsl
<!-- snip -->
<import href="remove-prefixes.xsl" />
<!-- snip -->