QXmlStreamAttributes Class

QXmlStreamAttributes 类表示QXmlStreamAttribute... 更多...

头文件: #include <QXmlStreamAttributes>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
继承: QList

注意:该类中的所有函数都是可重入的

公共函数

QXmlStreamAttributes()
void append(const QString &namespaceUri, const QString &name, const QString &value)
void append(const QString &qualifiedName, const QString &value)
bool hasAttribute(QAnyStringView qualifiedName) const
bool hasAttribute(QAnyStringView namespaceUri, QAnyStringView name) const
QStringView value(QAnyStringView namespaceUri, QAnyStringView name) const
QStringView value(QAnyStringView qualifiedName) const

详细描述

当阅读器报告start element 时,属性由QXmlStreamReaderattributes() 中返回。该类也可与QXmlStreamWriter 一起作为writeAttributes() 的参数。

便捷函数value() 会对向量进行循环,并返回给定 namespaceUri 和属性名称的属性值。

可使用append() 添加新属性。

成员函数文档

QXmlStreamAttributes::QXmlStreamAttributes()

QXmlStreamAttributes 的构造函数。

void QXmlStreamAttributes::append(const QString &namespaceUri, const QString &name, const QString &value)

namespaceUri 所描述的命名空间中附加一个新属性,属性名name ,属性值valuenamespaceUri 可以为空。

void QXmlStreamAttributes::append(const QString &qualifiedName, const QString &value)

这是一个重载函数。

附加一个新属性,其限定名称为qualifiedName ,值为value

bool QXmlStreamAttributes::hasAttribute(QAnyStringView qualifiedName) const

如果QXmlStreamAttributes 有一个限定名称为qualifiedName 的属性,则返回true ;否则返回false

请注意,这不是名称空间感知。例如,如果QXmlStreamAttributes 包含一个词法名称为 "xlink:href "的属性,这并不能说明 XLink 名称空间中名为href 的属性存在,因为xlink 前缀可以绑定到任何名称空间。对于名称空间感知代码,请使用将名称空间 URI 和本地名称作为参数的重载。

bool QXmlStreamAttributes::hasAttribute(QAnyStringView namespaceUri, QAnyStringView name) const

这是一个重载函数。

如果QXmlStreamAttributes 的属性的命名空间 URI 和名称与namespaceUriname 相对应,则返回true ;否则返回false

[noexcept] QStringView QXmlStreamAttributes::value(QAnyStringView namespaceUri, QAnyStringView name) const

返回namespaceUri 所描述命名空间中属性name 的值,如果未定义该属性,则返回空字符串引用。namespaceUri 可以为空。

注: 在 6.6 之前的 Qt XML 版本中,此函数作为重载集实现,仅接受QStringQLatin1StringView 的组合。

[noexcept] QStringView QXmlStreamAttributes::value(QAnyStringView qualifiedName) const

这是一个重载函数。

返回带有限定名称的属性值qualifiedName ,如果未定义该属性,则返回空字符串引用。限定名称是 XML 数据中属性的原始名称。它由命名空间前缀、冒号和属性的本地名称组成。由于命名空间前缀不是唯一的(相同的前缀可以指向不同的命名空间,不同的前缀也可以指向相同的命名空间),因此不应使用限定名称,而应使用已解析的 namespaceUri 和属性的本地名称。

注意: 在 6.6 之前的 Qt 版本中,该函数是作为重载集实现的,只接受QStringQLatin1StringView

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.