QJsonDocument 类提供读写 JSON 文档的办法。 更多...
头: | #include <QJsonDocument> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
注意: 此类的所有函数 可重入 .
enum | JsonFormat { Indented, Compact } |
QJsonDocument () | |
QJsonDocument (const QJsonObject & object ) | |
QJsonDocument (const QJsonArray & array ) | |
QJsonDocument (const QJsonDocument & other ) | |
QJsonDocument (QJsonDocument && other ) | |
~QJsonDocument () | |
QJsonArray | array () const |
bool | isArray () const |
bool | isEmpty () const |
bool | isNull () const |
bool | isObject () const |
QJsonObject | 对象 () const |
void | setArray (const QJsonArray & array ) |
void | setObject (const QJsonObject & object ) |
void | swap (QJsonDocument & other ) |
QByteArray | toJson (QJsonDocument::JsonFormat format = Indented) const |
QVariant | toVariant () const |
bool | operator!= (const QJsonDocument & other ) const |
QJsonDocument & | operator= (const QJsonDocument & other ) |
QJsonDocument & | operator= (QJsonDocument && other ) |
bool | operator== (const QJsonDocument & other ) const |
const QJsonValue | operator[] (const QString & key ) const |
const QJsonValue | operator[] (QStringView key ) const |
const QJsonValue | operator[] (QLatin1StringView key ) const |
const QJsonValue | operator[] (qsizetype i ) const |
QJsonDocument | fromJson (const QByteArray & json , QJsonParseError * error = nullptr) |
QJsonDocument | fromVariant (const QVariant & variant ) |
QJsonDocument is a class that wraps a complete JSON document and can read this document from, and write it to, a UTF-8 encoded text-based representation.
A JSON document can be converted from its text-based representation to a QJsonDocument using QJsonDocument::fromJson (). toJson () converts it back to text. The parser is very fast and efficient and converts the JSON to the binary representation used by Qt.
Validity of the parsed document can be queried with ! isNull ()
A document can be queried as to whether it contains an array or an object using isArray () 和 isObject (). The array or object contained in the document can be retrieved using array () 或 对象 () and then read or manipulated.
另请参阅 在 Qt 中支持 JSON and JSON 保存游戏范例 .
This value defines the format of the JSON byte array produced when converting to a QJsonDocument 使用 toJson ().
常量 | 值 | 描述 |
---|---|---|
QJsonDocument::Indented
|
0
|
定义人性化可读输出如下:
{ "Array" : [ true , 999 , "string" ] , "Key" : "Value" , "null" : null } |
QJsonDocument::Compact
|
1
|
Defines a compact output as follows:
{"Array":[true,999,"string"],"Key":"Value","null":null} |
构造空的无效文档。
[explicit]
QJsonDocument::
QJsonDocument
(const
QJsonObject
&
object
)
创建 QJsonDocument 从 object .
[explicit]
QJsonDocument::
QJsonDocument
(const
QJsonArray
&
array
)
构造 QJsonDocument 从 array .
创建副本为 other 文档。
移动构造 QJsonDocument 从 other .
删除文档。
采用 fromRawData 设置的二进制数据不被释放。
返回 QJsonArray 包含在文档中。
返回空数组若文档包含对象。
另请参阅 isArray (), 对象 (),和 setArray ().
[static]
QJsonDocument
QJsonDocument::
fromJson
(const
QByteArray
&
json
,
QJsonParseError
*
error
= nullptr)
剖析 json 作为 UTF-8 编码 JSON 文档,并创建 QJsonDocument 从它。
返回有效 (非 null) QJsonDocument 若剖析成功。若它失败,返回文档将为 null,且可选 error 变量将包含有关错误的进一步细节。
另请参阅 toJson (), QJsonParseError ,和 isNull ().
[static]
QJsonDocument
QJsonDocument::
fromVariant
(const
QVariant
&
variant
)
创建 QJsonDocument 从 QVariant variant .
若 variant contains any other type than a QVariantMap, QVariantHash, QVariantList or QStringList ,返回的文档无效。
另请参阅 toVariant ().
返回
true
若文档包含数组。
返回
true
若文档未包含任何数据。
返回
true
若此文档为 null。
null 是透过默认构造函数创建文档。
Documents created from UTF-8 encoded text or the binary format are validated during parsing. If validation fails, the returned document will also be null.
返回
true
若文档包含对象。
返回 QJsonObject 包含在文档中。
返回空对象若文档包含数组。
另请参阅 isObject (), array (),和 setObject ().
设置 array 作为此文档的 main 对象。
设置 object 作为此文档的 main 对象。
Swaps the document other with this. This operation is very fast and never fails.
转换 QJsonDocument 成 UTF-8 编码 JSON 文档在提供 format .
另请参阅 fromJson () 和 JsonFormat .
返回 QVariant 表示 Json 文档。
The returned variant will be a QVariantList if the document is a QJsonArray and a QVariantMap if the document is a QJsonObject .
另请参阅 fromVariant () 和 QJsonValue::toVariant ().
返回
true
if
other
不等于此文档
赋值 other 文档到此 QJsonDocument 。返回此对象的引用。
移动赋值 other 到此文档。
返回
true
若
other
文档等于此文档。
返回 QJsonValue 表示值为键 key .
相当于调用 对象 ().value(key).
返回的 QJsonValue is QJsonValue::Undefined 若键不存在,或者若 isObject () 为 false。
另请参阅 QJsonValue , QJsonValue::isUndefined (),和 QJsonObject .
这是重载函数。
这是重载函数。
返回 QJsonValue representing the value for index i .
相当于调用 array ().at(i).
返回的 QJsonValue is QJsonValue::Undefined ,若 i 超出边界,或者若 isArray () 为 false。
另请参阅 QJsonValue , QJsonValue::isUndefined (),和 QJsonArray .