• <legend id='eyHsA'><style id='eyHsA'><dir id='eyHsA'><q id='eyHsA'></q></dir></style></legend>
    <tfoot id='eyHsA'></tfoot>

      • <bdo id='eyHsA'></bdo><ul id='eyHsA'></ul>
        <i id='eyHsA'><tr id='eyHsA'><dt id='eyHsA'><q id='eyHsA'><span id='eyHsA'><b id='eyHsA'><form id='eyHsA'><ins id='eyHsA'></ins><ul id='eyHsA'></ul><sub id='eyHsA'></sub></form><legend id='eyHsA'></legend><bdo id='eyHsA'><pre id='eyHsA'><center id='eyHsA'></center></pre></bdo></b><th id='eyHsA'></th></span></q></dt></tr></i><div id='eyHsA'><tfoot id='eyHsA'></tfoot><dl id='eyHsA'><fieldset id='eyHsA'></fieldset></dl></div>

        <small id='eyHsA'></small><noframes id='eyHsA'>

        使用 System.Text.Json.Serialization 解析 json 的异常

        Exception parsing json with System.Text.Json.Serialization(使用 System.Text.Json.Serialization 解析 json 的异常)

        <small id='TNaqp'></small><noframes id='TNaqp'>

        • <bdo id='TNaqp'></bdo><ul id='TNaqp'></ul>
          <legend id='TNaqp'><style id='TNaqp'><dir id='TNaqp'><q id='TNaqp'></q></dir></style></legend><tfoot id='TNaqp'></tfoot>

                    <tbody id='TNaqp'></tbody>
                  <i id='TNaqp'><tr id='TNaqp'><dt id='TNaqp'><q id='TNaqp'><span id='TNaqp'><b id='TNaqp'><form id='TNaqp'><ins id='TNaqp'></ins><ul id='TNaqp'></ul><sub id='TNaqp'></sub></form><legend id='TNaqp'></legend><bdo id='TNaqp'><pre id='TNaqp'><center id='TNaqp'></center></pre></bdo></b><th id='TNaqp'></th></span></q></dt></tr></i><div id='TNaqp'><tfoot id='TNaqp'></tfoot><dl id='TNaqp'><fieldset id='TNaqp'></fieldset></dl></div>
                  本文介绍了使用 System.Text.Json.Serialization 解析 json 的异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我的示例代码很简单:

                  using System.Text.Json.Serialization;
                  using Newtonsoft.Json;
                  
                  public class C {
                    public C(string PracticeName) { this.PracticeName = PracticeName; }
                    public string PracticeName;
                  }
                  
                  var x = new C("1");
                  var json = JsonConvert.SerializeObject(x); // returns "{"PracticeName":"1"}"
                  
                  var x1 = JsonConvert.DeserializeObject<C>(json); // correctly builds a C
                  
                  var x2 = System.Text.Json.Serialization.JsonSerializer.Parse<C>(json);
                  

                  最后一行提出:

                  抛出异常:System.Text.Json.dll 中的System.NullReferenceException"对象引用未设置为对象的实例.

                  Exception thrown: 'System.NullReferenceException' in System.Text.Json.dll Object reference not set to an instance of an object.

                  我做错了什么?

                  (请注意,这是最新的 .NET Core 3 预览版 5 和最新的 System.Text.Json 4.6.0-preview6.19259.10)

                  (Note this is on latest .NET Core 3 preview 5 with latest System.Text.Json 4.6.0-preview6.19259.10)

                  添加无参数构造函数可以防止异常,但是我不想要/不需要无参数构造函数,没有它,Json.Net 解析得很好.

                  Adding a parameterless constructor prevents the exception however I don't want/need a parameterless constructor and Json.Net parses fine without it.

                  有没有办法让 System.Text.Json 像 Json.Net 一样使用给定的构造函数进行解析?

                  Is there a way to make System.Text.Json parse using the given constructor like Json.Net does ?

                  推荐答案

                  目前,.NET Core 3.0 支持 JSON 还没有完成,貌似只支持无参构造函数.将来可能会添加该功能.

                  In it's current state, JSON Support in .NET Core 3.0 is still not finished, and it seems only a parameterless constructor is supported. It might be, that that feature will be added in future.

                  当您想使用 .net 框架中的新 Json API 时,一个 解决方法 选项是为您的序列化模型创建一个无参数构造函数.可能我们根本不应该对普通的数据传输对象使用构造函数,因此我认为它是一种选择,而不是一种解决方法.

                  One workaround option would be to make a parameterless constructor for your serialized model, when you want to use the new Json API from the .net framework. Probably we shouldn't use constructors for plain datatransfer objects at all, hence I see it as option, not as a workaround.

                  如果您寻找一种方法,关于如何从旧版本迁移到 .net core 3.0,或者无论如何使用 Newtonsoft.Json,这已记录在 这里:

                  If you search for a way, on how to migrate from an older version to .net core 3.0, or use Newtonsoft.Json anyway, this is documented here:

                  MVC:

                  安装 Microsoft.AspNetCore.Mvc.NewtonsoftJson 打包,并将其注册到您的服务:

                  Install Microsoft.AspNetCore.Mvc.NewtonsoftJson package, and register it to your services:

                  services.AddMvc().AddNewtonsoftJson();
                  

                  SignalR:

                  安装 Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson

                  //Client
                  new HubConnectionBuilder()
                  .WithUrl("/chatHub")
                  .AddNewtonsoftJsonProtocol(...)
                  .Build();
                  
                  //Server
                  services.AddSignalR().AddNewtonsoftJsonProtocol(...);
                  

                  这样你应该*能够在 .Net Core 3.0 中使用 Json.NET 功能

                  That way you should* be able to use Json.NET Features in .Net Core 3.0

                  *我没有安装,所以无法测试

                  这篇关于使用 System.Text.Json.Serialization 解析 json 的异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)

                  <small id='FgrXb'></small><noframes id='FgrXb'>

                  <i id='FgrXb'><tr id='FgrXb'><dt id='FgrXb'><q id='FgrXb'><span id='FgrXb'><b id='FgrXb'><form id='FgrXb'><ins id='FgrXb'></ins><ul id='FgrXb'></ul><sub id='FgrXb'></sub></form><legend id='FgrXb'></legend><bdo id='FgrXb'><pre id='FgrXb'><center id='FgrXb'></center></pre></bdo></b><th id='FgrXb'></th></span></q></dt></tr></i><div id='FgrXb'><tfoot id='FgrXb'></tfoot><dl id='FgrXb'><fieldset id='FgrXb'></fieldset></dl></div>
                • <legend id='FgrXb'><style id='FgrXb'><dir id='FgrXb'><q id='FgrXb'></q></dir></style></legend>
                        <tbody id='FgrXb'></tbody>
                      • <tfoot id='FgrXb'></tfoot>

                          <bdo id='FgrXb'></bdo><ul id='FgrXb'></ul>