如何获取qt中特定xml节点的所有属性

时间:2010-06-10 09:50:16

标签: python xml qt pyqt

是否可以获取pyqt中特定节点的所有属性? 例如..考虑以下节点:
< asset Name="3dAsset" ID="5"/>
我想检索(“名称”和“ID”)字符串
有可能吗?

提前致谢

3 个答案:

答案 0 :(得分:8)

您可以使用函数

检索属性的特定值
QString QDomElement::attribute ( const QString & name, const QString & defValue = QString() ) const

要使用所有属性,

QDomNamedNodeMap QDomElement::attributes () const

并且您必须遍历DomNamedNodeMap并获取每个属性的值。希望它有所帮助。

修改:试试这个。

使用QDomNamedNodeMap,你有了,

QDomNode QDomNamedNodeMap::item ( int index ) const

将返回特定属性的QDomNode。 然后,给,

QDomAttr QDomNode::toAttr () const

获得QDomAttr给予,

QString name () const

将返回属性的名称。 希望它有所帮助。

答案 1 :(得分:2)

如何在PySide / PyQt中获取第一个属性名称/值:

if node.hasAttributes():
    nodeAttributes = node.attributes()
    attributeItem = nodeAttributes.item(0) #pulls out first item
    attribute = attributeItem.toAttr()
    attributeName = attr.name()
    attributeValue = attr.value()

这只是展示如何获得一个名称/值对,但它应该很容易扩展nodeAttributes.length()或类似的循环。

答案 2 :(得分:0)

这是针对c ++的。我遇到了同样的问题。您需要转换为QDomAttr。我确信API在python中是相同的。

if( Node.hasAttributes() )
{
    QDomNamedNodeMap map = Node.attributes();
    for( int i = 0 ; i < map.length() ; ++i )
    {
        if(!(map.item(i).isNull()))
        {
            QDomNode debug = map.item(i);
            QDomAttr attr = debug.toAttr();
            if(!attr.isNull())
            {
                cout << attr.value().toStdString();
                cout << attr.name().toStdString();
            }
    }
}