QJsonParseError 結構

QJsonParseError 類被用於在 JSON 剖析期間報告錯誤。 更多...

頭: #include <QJsonParseError>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core

注意: 在此結構中的所有函數均 可重入 .

公共類型

enum ParseError { NoError, UnterminatedObject, MissingNameSeparator, UnterminatedArray, MissingValueSeparator, …, GarbageAtEnd }

公共函數

QString errorString () const

公共變量

QJsonParseError::ParseError error
std::conditional_t<6 < 7, int, qint64> offset

詳細描述

另請參閱 在 Qt 中支持 JSON and 保存和加載遊戲 .

成員類型文檔編製

enum QJsonParseError:: ParseError

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

常量 描述
QJsonParseError::NoError 0 No error occurred
QJsonParseError::UnterminatedObject 1 An object is not correctly terminated with a closing curly bracket
QJsonParseError::MissingNameSeparator 2 A comma separating different items is missing
QJsonParseError::UnterminatedArray 3 The array is not correctly terminated with a closing square bracket
QJsonParseError::MissingValueSeparator 4 A colon separating keys from values inside objects is missing
QJsonParseError::IllegalValue 5 The value is illegal
QJsonParseError::TerminationByNumber 6 The input stream ended while parsing a number (as of 6.9, this is no longer returned)
QJsonParseError::IllegalNumber 7 The number is not well formed
QJsonParseError::IllegalEscapeSequence 8 An illegal escape sequence occurred in the input
QJsonParseError::IllegalUTF8String 9 An illegal UTF8 sequence occurred in the input
QJsonParseError::UnterminatedString 10 A string wasn't terminated with a quote
QJsonParseError::MissingObject 11 An object was expected but couldn't be found
QJsonParseError::DeepNesting 12 The JSON document is too deeply nested for the parser to parse it
QJsonParseError::DocumentTooLarge 13 The JSON document is too large for the parser to parse it
QJsonParseError::GarbageAtEnd 14 The 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 .

成員變量文檔編製

QJsonParseError::ParseError QJsonParseError:: error

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

另請參閱 ParseError and errorString ().

std::conditional_t < 6 < 7 , int , qint64 > QJsonParseError:: offset

Contains the byte offset in the UTF-8 byte array where the parse error occurred.

另請參閱 error , errorString (),和 QJsonDocument::fromJson ().

內容

  1. 公共類型

  2. 公共函數

  3. 公共變量

  4. 詳細描述