我使用此代码创建一个具有预期输出的新节点:
<item desc="desc foobar"><![CDATA[qux]]></item>
代码:
open my $fh, "<", $xml_file;
binmode $fh;
my $parser = XML::LibXML->new();
my $doc = $parser->load_xml(IO => $fh);
# create a new node in XML file
my $root = $doc->getDocumentElement();
my $new_element = $doc->createElement("item");
# FIXME
$new_element->appendTextNode(sprintf '<![CDATA[%s]]>', join "\n", @input);
$new_element->setAttribute('desc', $desc);
$root->appendChild($new_element);
close $fh;
open my $out, '>', $xml_file;
binmode $out;
$doc->toFH($out);
close $out;
它可以很好地创建新的元素文本,但我想知道如何在没有XML实体替换的情况下添加CDATA:我得到:
<item desc="dddd"><![CDATA[qux]]>
# ^^^^
答案 0 :(得分:5)
很明显appendTextNode()
会自动转义文本节点中有问题的字符。这是你应该做的:
my $cdata_node = XML::LibXML::CDATASection->new(
join "\n", @input
);
$new_element->appendChild($cdata_node);
$node = XML::LibXML::CDATASection->new( $content );
构造函数是此包的唯一提供的函数。它是 必需的,因为libxml2处理不同的文本节点类型 略有不同。
该类继承自XML :: LibXML :: Node
http://search.cpan.org/dist/XML-LibXML/lib/XML/LibXML/CDATASection.pod
$childnode = $node->appendChild( $childnode );
该函数会将$ childnode添加到$ node的子节点的末尾......
http://search.cpan.org/~shlomif/XML-LibXML-2.0117/lib/XML/LibXML/Node.pod