qt 删除某个标签下所有子标签
Posted 不倒的土豆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt 删除某个标签下所有子标签相关的知识,希望对你有一定的参考价值。
代码如下:
1 QDomNodeList listFlowChart= doc.elementsByTagName("device"); 2 QDomElement flowChart = listFlowChart.at(0).toElement(); 3 QDomNodeList listAllNodes = flowChart.childNodes(); 4 while (listAllNodes.size() > 0) { 5 flowChart.removeChild(listAllNodes.at(0)); 6 }
listFlowChart 是xml中所有device标签的集合,取其中第一个,删除其下所有子标签。最好检测一下listFlowChart是否为空。
不能用for循环来移除标签。因为从listAllNode中每移除一个标签,listAllNode.size()都会减一。
以上是关于qt 删除某个标签下所有子标签的主要内容,如果未能解决你的问题,请参考以下文章
删除 Matplotlib,Python 中某些子图的 y 轴刻度标签