当我尝试使用xslt重命名时,如何复制xml元素的命名空间?

时间:2015-05-27 08:55:12

标签: xml xslt namespaces

我的Xml文件:

.contact a {
color: white;
}

我的Xslt文件:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Response xmlns:responseservice="http://response.mywork.com">
        <ResponseRow xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <entityStatus>A</entityStatus>
                <bAResponse>
                <bAResponseRow>
                    <ABCD>U</ABCD>
                </bAResponseRow>
            </bAResponse>
        </ResponseRow>
    </Response>

当我将 xslt 应用于我的 xml 文件以重命名元素时,附加到原始 xml 的命名空间就会消失。请提示如何保留它们。

0 个答案:

没有答案