Can not add Newtonsoft.Json.Linq.JValue to Newtonsoft.Json.Linq.JObject.
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
C#项目中使用NewtonSoft.json,报错提示:
Can not add Newtonsoft.Json.Linq.JValue to Newtonsoft.Json.Linq.JObject.
代码如下:
//{"code":200,"检测编号":"JC1810231520411","message":"OK"}
string resp = ...
JObject respObj = new JObject(resp); //报错
格式正确的json字符串却无法转换为JObject,原因是什么?
自己想明白了,原来JObject本来就不是这样创建的,正确的方法如下:
string resp = ...
JObject respObj = (JObject)JsonConvert.DeserializeObject(resp);
问题解决。
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献12条内容
所有评论(0)