加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

什么是QName

发布时间:2020-12-16 05:18:30 所属栏目:百科 来源:网络整理
导读:作者:fbysss Blog:blog.csdn.net/fbysss msn: jameslastchina@hotmail.com 声明:本文章由fbysss整理编写,转载或引用请注明引用地址。 关键字:qname Qname这个东东,在使用dom4j的时候,经常见到,可能是自己解析的xml都太简单了,所以没有仔细研究过,

作者:fbysss
Blog:blog.csdn.net/fbysss
msn:
jameslastchina@hotmail.com
声明:本文章由fbysss整理编写,转载或引用请注明引用地址。
关键字:qname

Qname这个东东,在使用dom4j的时候,经常见到,可能是自己解析的xml都太简单了,所以没有仔细研究过,就是觉得名字很怪异,在google百度搜索“什么是qname”,居然只有几条没有像样答案的纪录。还好,在国外网站上找到了相关的解释,这下基本明白了。
1.来历:qname是qualified name的简写
2.构成:由名字空间(namespace)前缀(prefix)以及冒号(:),还有一个元素名称构成
3.举例:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
version="1.0">
<xsl:template match="foo">
<hr/>
</xsl:template>
</xsl:stylesheet>
xsl是名字空间前缀,template是元素名称,xsl:template 就是一个qname
4.总结:qname无非是有着特定格式的xml元素,其作用主要是增加了名字空间,比如有同样的元素名称,而名字空间不同的情况。先了解这么多,请大家补充。
参考地址:

http://infohost.nmt.edu/tcc/help/pubs/pyxml/def-qname.html
原文如下:

A document may contain elements and attributes from more than one namespace URI. Because namespace URIs can be quite lengthy,it is cumbersome to include the complete namespace URI in each element or attribute name.

XML allows a shorthand notation to simplify assigning names to namespaces. You may invent a shortnamespace prefixand associate it with a namespace URI.

For example,suppose your document contains names from both the XSLT and XHTML namespaces. In this situation,it is customary to associate the namespace prefix “xsl” with XSLT. You might use prefix “html” to refer to the XHTML namespace.

Aqualified namehas three parts:

  1. A namespace prefix.

  2. A colon character,“:”.

  3. Alocal namethat gives the name of the element or attribute within that namespace.

<xsl:template match="separator"> <html:hr/> </xsl:template>

Elementtemplateis in the XSLT namespace,and elementhris in the HTML namespace.

You can also use anunqualified name,which is just a local name without the namespace prefix. The namespace of such a name is called thedefault namespace.

The association between a namespace prefix and a namespace URI is made with anxmlnsattribute located in some element. This attribute can have two forms:

  • An attribute namedxmlns='nsURI'defines the namespace URI of the default namespace. This namespace is associated with all elements and attributes that have unqualified names.

  • An attribute namedxmlns:prefix='nsURI'associates the givenprefixwith the namespace URInsURI.

Here is an example of a complete document using elements from two namespaces:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
     version="1.0">
  <xsl:template match="foo">
    <hr/>
  </xsl:template>
</xsl:stylesheet>

In this example,thetemplateelement is in the XSLT namespace. Thehrelement is in the default namespace,which is associated with the XHTML namespace URI.

来自:http://www.52php.cn/article/p-dzhswjce-bav.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读