QJsonParseError Class

QJsonParseError 用于在JSON解析期间报告错误. 更多...

头文件: #include <QJsonParseError>
qmake: QT += core
开始支持版本: Qt 5.0

Note: All functions in this class are reentrant.

公有类型

enum ParseError { NoError, UnterminatedObject, MissingNameSeparator, UnterminatedArray, ..., GarbageAtEnd }

公有函数

QString errorString() const

公有变量

ParseError error
int offset

详细描述

QJsonParseError 用于在JSON解析期间报告错误.

参见 JSON Support in QtJSON Save Game Example.

成员类型

enum QJsonParseError::ParseError

This enum describes the type of error that occurred during the parsing of a JSON document.

ConstantValueDescription
QJsonParseError::NoError0No error occurred
QJsonParseError::UnterminatedObject1An object is not correctly terminated with a closing curly bracket
QJsonParseError::MissingNameSeparator2A comma separating different items is missing
QJsonParseError::UnterminatedArray3The array is not correctly terminated with a closing square bracket
QJsonParseError::MissingValueSeparator4A colon separating keys from values inside objects is missing
QJsonParseError::IllegalValue5The value is illegal
QJsonParseError::TerminationByNumber6The input stream ended while parsing a number
QJsonParseError::IllegalNumber7The number is not well formed
QJsonParseError::IllegalEscapeSequence8An illegal escape sequence occurred in the input
QJsonParseError::IllegalUTF8String9An illegal UTF8 sequence occurred in the input
QJsonParseError::UnterminatedString10A string wasn't terminated with a quote
QJsonParseError::MissingObject11An object was expected but couldn't be found
QJsonParseError::DeepNesting12The JSON document is too deeply nested for the parser to parse it
QJsonParseError::DocumentTooLarge13The JSON document is too large for the parser to parse it
QJsonParseError::GarbageAtEnd14The parsed document contains additional garbage characters at the end

成员函数

QString QJsonParseError::errorString() const

Returns the human-readable message appropriate to the reported JSON parsing error.

参见 error.

成员变量

ParseError QJsonParseError::error

Contains the type of the parse error. Is equal to QJsonParseError::NoError if the document was parsed correctly.

参见 ParseError and errorString().

int QJsonParseError::offset

Contains the offset in the input string where the parse error occurred.

参见 error and errorString().