提示:QDomElement 删除节点失效原因很特殊,但应该是removeChild函数内部做了什么操作具体原因不详,
但已经解决,如下所示
QDomElement
超级大坑
提示:QDomElement 删除节点时正序无法进行正常删除,当删除第一个节点时,后面子节点索引顺序重新编号,也就是原来的第2个自己点变成第1个子节点,依次类推,所以我们无法正常删除,因为它已经跳号了:
切记要倒序删除
一、删除节点代码如下
代码如下(示例):
// nodeElement 注意这个类型就是 QDomElement 通过函数传参的形式传递过来即可
// nodeList.at(i).toElement() 此方法有QDomNode转换成QDomElement 因为nodeList.at(i)是QDomNode类型
QDomNodeList nodeList = nodeElement.childNodes(); //获取某个节点下有多少个子节点
for (int i = nodeList.count()-1; i>=0; i--){
if ( (nodeList.at(i).toElement().tagName() == "identifiers") ||(nodeList.at(i).toElement().tagName() == "pointstyle")||(nodeList.at(i).toElement().tagName() == "remarks"))
{
// 删除节点
nodeElement.removeChild(nodeList.at(i));
}
}
2.删除某个元素节点 的属性
代码如下(示例):
void ReadXml:: DelNode( const QDomElement &element){
QDomElement nodeElement = element;
QDomNodeList nodeList = nodeElement.childNodes();
// 倒序删除节点可行
for (int i = nodeList.count()-1; i>=0; i--){
if ( (nodeList.at(i).toElement().tagName() == "XXX") ||(nodeList.at(i).toElement().tagName() == "XXX1")||(nodeList.at(i).toElement().tagName() == "XXX2"))
{
// 删除节点
nodeElement.removeChild(nodeList.at(i));
}else if(nodeList.at(i).toElement().tagName() == "X1" ){
DelNodeAttribute(nodeList.at(i)); //删除节点某个属性
}
}
}
void ReadXml::DelNodeAttribute( QDomNode child)
{
//删除 某个元素 属性
QDomNamedNodeMap arrMap = child.attributes();
for ( int i= 0; i < arrMap.count();i++){
if (arrMap.item(i).nodeName()=="xxxx" ){
child.toElement().removeAttribute(arrMap.item(i).nodeName());
}
}
}