QDomElement删除节点失效

提示:QDomElement 删除节点失效原因很特殊,但应该是removeChild函数内部做了什么操作具体原因不详,
但已经解决,如下所示


超级大坑

提示: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());
        }       
    }
}

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值