QDomCDATASection Class Reference

[ QtXml module]

QDomCDATASection 类表示 XML CDATA 区间。 更多...

继承 QDomText .

方法


详细描述

QDomCDATASection 类表示 XML CDATA 区间。

CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]>" string that terminates the CDATA section. CDATA sections cannot be nested. Their primary purpose is for including material such as XML fragments, without needing to escape all the delimiters.

Adjacent QDomCDATASection nodes are not merged by the QDomNode.normalize () 函数。

有关文档对象模型的进一步信息,见 http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-Level-2-Core/ . For a more general introduction of the DOM implementation see the QDomDocument 文档编制。


方法文档编制

QDomCDATASection.__init__ ( self )

Constructs an empty CDATA section. To create a CDATA section with content, use the QDomDocument.createCDATASection () 函数。

QDomCDATASection.__init__ ( self , QDomCDATASection   x )

构造副本为 x .

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode ().

QDomNode.NodeType QDomCDATASection.nodeType ( self )

返回 CDATASection .