XML 命名空间
XML 命名空间提供避免元素命名冲突的方法。
命名冲突
在 XML 中,元素名称是由开发者定义的,当两个不同的文档使用相同的元素名时,就会发生命名冲突。
这个 XML 携带 HTML 表格的信息:
<table>
<tr>
<td>Apples<https://www.fxku.cn/a/9/.phptd>
<td>Bananas<https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phptable>
这个 XML 文档携带有关桌子的信息(一件家具):
<table>
<name>African Coffee Table<https://www.fxku.cn/a/9/.phpname>
<width>80<https://www.fxku.cn/a/9/.phpwidth>
<length>120<https://www.fxku.cn/a/9/.phplength>
<https://www.fxku.cn/a/9/.phptable>
假如这两个 XML 文档被一起使用,由于两个文档都包含带有不同内容和定义的 <table> 元素,就会发生命名冲突。
XML 解析器无法确定如何处理这类冲突。
使用前缀来避免命名冲突
在 XML 中的命名冲突可以通过使用名称前缀从而容易地避免。
该 XML 携带某个 HTML 表格和某件家具的信息:
<h:table>
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table>
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
在上面的实例中,不会有冲突,因为两个 <table> 元素有不同的名称。
XML 命名空间 - xmlns 属性
当在 XML 中使用前缀时,一个所谓的用于前缀的命名空间必须被定义。
命名空间是在元素的开始标签的 xmlns 属性中定义的。
命名空间声明的语法如下。xmlns:前缀="URI"。
<root>
<h:table xmlns:h="https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php">
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table xmlns:f="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3cschool.cchttps://www.fxku.cn/a/9/.phpfurniture">
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
<https://www.fxku.cn/a/9/.phproot>
在上面的实例中,<table> 标签的 xmlns 属性定义了 h: 和 f: 前缀的合格命名空间。
当命名空间被定义在元素的开始标签中时,所有带有相同前缀的子元素都会与同一个命名空间相关联。
命名空间,可以在他们被使用的元素中或者在 XML 根元素中声明:
<root xmlns:h="https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php"
xmlns:f="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3cschool.cchttps://www.fxku.cn/a/9/.phpfurniture">
<h:table>
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table>
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
<https://www.fxku.cn/a/9/.phproot>
注释:命名空间 URI 不会被解析器用于查找信息。
其目的是赋予命名空间一个惟一的名称。不过,很多公司常常会作为指针来使用命名空间指向实际存在的网页,这个网页包含关于命名空间的信息。
请访问 https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php。
统一资源标识符(URI,全称 Uniform Resource Identifier)
统一资源标识符(URI)是一串可以标识因特网资源的字符。
最常用的 URI 是用来标识因特网域名地址的统一资源定位器(URL)。另一个不那么常用的 URI 是统一资源命名(URN)。
在我们的实例中,我们仅使用 URL。
默认的命名空间
为元素定义默认的命名空间可以让我们省去在所有的子元素中使用前缀的工作。它的语法如下:
xmlns="namespaceURI"
这个 XML 携带 HTML 表格的信息:
<table xmlns="https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php">
<tr>
<td>Apples<https://www.fxku.cn/a/9/.phptd>
<td>Bananas<https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phptable>
这个XML携带有关一件家具的信息:
<table xmlns="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3schools.comhttps://www.fxku.cn/a/9/.phpfurniture">
<name>African Coffee Table<https://www.fxku.cn/a/9/.phpname>
<width>80<https://www.fxku.cn/a/9/.phpwidth>
<length>120<https://www.fxku.cn/a/9/.phplength>
<https://www.fxku.cn/a/9/.phptable>
实际使用中的命名空间
XSLT 是一种用于把 XML 文档转换为其他格式的 XML 语言,比如 HTML。
在下面的 XSLT 文档中,您可以看到,大多数的标签是 HTML 标签。
非 HTML 的标签都有前缀 xsl,并由此命名空间标识:xmlns:xsl="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3.orghttps://www.fxku.cn/a/9/.php999https://www.fxku.cn/a/9/.phpXSLhttps://www.fxku.cn/a/9/.phpTransform":
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3.orghttps://www.fxku.cn/a/9/.php999https://www.fxku.cn/a/9/.phpXSLhttps://www.fxku.cn/a/9/.phpTransform">
<xsl:template match="https://www.fxku.cn/a/9/.php">
<html>
<body>
<h2>My CD Collection<https://www.fxku.cn/a/9/.phph2>
<table border="1">
<tr>
<th align="left">Title<https://www.fxku.cn/a/9/.phpth>
<th align="left">Artist<https://www.fxku.cn/a/9/.phpth>
<https://www.fxku.cn/a/9/.phptr>
<xsl:for-each select="cataloghttps://www.fxku.cn/a/9/.phpcd">
<tr>
<td><xsl:value-of select="title"https://www.fxku.cn/a/9/.php><https://www.fxku.cn/a/9/.phptd>
<td><xsl:value-of select="artist"https://www.fxku.cn/a/9/.php><https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phpxsl:for-each>
<https://www.fxku.cn/a/9/.phptable>
<https://www.fxku.cn/a/9/.phpbody>
<https://www.fxku.cn/a/9/.phphtml>
<https://www.fxku.cn/a/9/.phpxsl:template>
<https://www.fxku.cn/a/9/.phpxsl:stylesheet>
如果您想要学习有关 XSLT 的知识,请在我们的首页查找 XSLT 教程。
小库提示
扫描下方二维码,访问手机版。
XML 命名空间提供避免元素命名冲突的方法。 在 XML 中,元素名称是由开发者定义的,当两个不同的文档使用相同的元素名时,就会发生命名冲突。 这个 XML 携带 HTML 表格的信息: 这个 XML 文档携带有关桌子的信息(一件家具): 假如这两个 XML 文档被一起使用,由于两个文档都包含带有不同内容和定义的 <table> 元素,就会发生命名冲突。 XML 解析器无法确定如何处理这类冲突。 在 XML 中的命名冲突可以通过使用名称前缀从而容易地避免。 该 XML 携带某个 HTML 表格和某件家具的信息: 在上面的实例中,不会有冲突,因为两个 <table> 元素有不同的名称。 当在 XML 中使用前缀时,一个所谓的用于前缀的命名空间 命名空间是在元素的开始标签的 xmlns 属性 命名空间声明的语法如下。xmlns:前缀 在上面的实例中,<table> 标签的 xmlns 属性定义了 h: 和 f: 前缀的合格命名空间。 当命名空间被定义在元素的开始标签中时,所有带有相同前缀的子元素都会与同一个命名空间相关联。 命名空间,可以在他们被使用的元素中或者在 XML 根元素中声明: 注释: 其目的是赋予命名空间一个惟一的名称。不过,很多公司常常会作为指针来使用命名空间指向实际存在的网页,这个网页包含关于命名空间的信息。 请访问 https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php 统一资源标识符 最常用的 URI 是用来标识因特网域名地址的统一资源定位器 在我们的实例中,我们仅使用 URL。 为元素定义默认的命名空间可以让我们省去在所有的子元素中使用前缀的工作。它的语法如下: 这个 XML 携带 HTML 表格的信息: 这个XML携带有关一件家具的信息: XSLT 是一种用于把 XML 文档转换为其他格式的 XML 语言,比如 HTML。 在下面的 XSLT 文档中,您可以看到,大多数的标签是 HTML 标签。 非 HTML 的标签都有前缀 xsl,并由此命名空间标识:xmlns:xsl="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3.orghttps://www.fxku.cn/a/9/.php999https://www.fxku.cn/a/9/.phpXSLhttps://www.fxku.cn/a/9/.phpTransform": 如果您想要学习有关 XSLT 的知识,请在我们的首页
命名冲突
<tr>
<td>Apples<https://www.fxku.cn/a/9/.phptd>
<td>Bananas<https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phptable>
<name>African Coffee Table<https://www.fxku.cn/a/9/.phpname>
<width>80<https://www.fxku.cn/a/9/.phpwidth>
<length>120<https://www.fxku.cn/a/9/.phplength>
<https://www.fxku.cn/a/9/.phptable>
使用前缀来避免命名冲突
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table>
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
XML 命名空间 - xmlns 属性
<h:table xmlns:h="https:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.fxku.cnhttps://www.fxku.cn/a/9/.phpahttps://www.fxku.cn/a/9/.php9https://www.fxku.cn/a/9/.php"
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table xmlns:f="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3cschool.cchttps://www.fxku.cn/a/9/.phpfurniture"
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
<https://www.fxku.cn/a/9/.phproot>
xmlns:f="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3cschool.cchttps://www.fxku.cn/a/9/.phpfurniture"
<h:table>
<h:tr>
<h:td>Apples<https://www.fxku.cn/a/9/.phph:td>
<h:td>Bananas<https://www.fxku.cn/a/9/.phph:td>
<https://www.fxku.cn/a/9/.phph:tr>
<https://www.fxku.cn/a/9/.phph:table>
<f:table>
<f:name>African Coffee Table<https://www.fxku.cn/a/9/.phpf:name>
<f:width>80<https://www.fxku.cn/a/9/.phpf:width>
<f:length>120<https://www.fxku.cn/a/9/.phpf:length>
<https://www.fxku.cn/a/9/.phpf:table>
<https://www.fxku.cn/a/9/.phproot>
统一资源标识符(URI,全称 Uniform Resource Identifier)
默认的命名空间
<tr>
<td>Apples<https://www.fxku.cn/a/9/.phptd>
<td>Bananas<https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phptable>
<name>African Coffee Table<https://www.fxku.cn/a/9/.phpname>
<width>80<https://www.fxku.cn/a/9/.phpwidth>
<length>120<https://www.fxku.cn/a/9/.phplength>
<https://www.fxku.cn/a/9/.phptable>
实际使用中的命名空间
<xsl:stylesheet version="1.0"
xmlns:xsl="http:https://www.fxku.cn/a/9/.phphttps://www.fxku.cn/a/9/.phpwww.w3.orghttps://www.fxku.cn/a/9/.php999https://www.fxku.cn/a/9/.phpXSLhttps://www.fxku.cn/a/9/.phpTransform">
<xsl:template match="https://www.fxku.cn/a/9/.php">
<html>
<body>
<h2>My CD Collection<https://www.fxku.cn/a/9/.phph2>
<table border="1">
<tr>
<th align="left">Title<https://www.fxku.cn/a/9/.phpth>
<th align="left">Artist<https://www.fxku.cn/a/9/.phpth>
<https://www.fxku.cn/a/9/.phptr>
<xsl:for-each select="cataloghttps://www.fxku.cn/a/9/.phpcd">
<tr>
<td><xsl:value-of select="title"https://www.fxku.cn/a/9/.php><https://www.fxku.cn/a/9/.phptd>
<td><xsl:value-of select="artist"https://www.fxku.cn/a/9/.php><https://www.fxku.cn/a/9/.phptd>
<https://www.fxku.cn/a/9/.phptr>
<https://www.fxku.cn/a/9/.phpxsl:for-each>
<https://www.fxku.cn/a/9/.phptable>
<https://www.fxku.cn/a/9/.phpbody>
<https://www.fxku.cn/a/9/.phphtml>
<https://www.fxku.cn/a/9/.phpxsl:template>
<https://www.fxku.cn/a/9/.phpxsl:stylesheet>
扫描下方二维码,访问手机版。