開發平台(Platform): (Ex: Win10, Linux, ...)
Win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
VC2017
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
nlohmann/json
問題(Question):
欲利用josn 讀取一個從cline接收到的字串,
可以依據其key 讀取value ,
讀取時發生錯誤
餵入的資料(Input):
client傳送來的文字串
[
{
"_id": "5acb0a9494eb20cde1dbe689",
"index": 0,
"guid": "210941f6-9151-4315-8dfe-d7e0485afb18"
},
]
預期的正確結果(Expected Output):
auto keep = j_from_cbor["_id"] ; // keep = 5acb0a9494eb20cde1dbe689
錯誤結果(Wrong Output):
程式錯誤
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
https://ideone.com/vxFCgF
補充說明(Supplement):
加入第150行欲讀取時發生錯誤。