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

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

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

        如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?

        How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
          <bdo id='1OLaL'></bdo><ul id='1OLaL'></ul>

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

              • <small id='1OLaL'></small><noframes id='1OLaL'>

                1. 本文介绍了如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我正在尝试使用声称返回 JSON,但实际上总是返回 JSONP 的 Web 服务.我看不到改变该服务行为的方法.

                  I am trying to consume a web service that claims to return JSON, but actually always returns JSONP. I don't see a way to change that service's behavior.

                  我想使用 NewtonSoft Json.Net 来解析结果.我已经声明了一个类,我们称它为 MyType,我想将内部 JSON 结果反序列化为.

                  I would like to use NewtonSoft Json.Net to parse the result. I have declared a class, let's call it MyType that I want to deserialize the inner JSON result into.

                  JSONP:

                  parseResponse({
                  "total" : "13,769",
                  "lower" : "1",
                  "upper" : "20"})
                  

                  如您所见,这不是正确的 JSON,因为它具有 parseResponse( 前缀和 ) 后缀.虽然此示例非常简单,但实际响应可能会很长,大约 100Ks.

                  As you can see this is not correct JSON as it has parseResponse( prefix and ) suffix. While this example is very simple, the actual response can be quite long, on the order of 100Ks.

                  我的类型:

                  public class MyType
                  {
                      public Decimal total;
                      public int lower;
                      public int upper;
                  }
                  

                  在我将 Web 服务响应放入流和 JsonTextReader 后,我尝试像这样反序列化:

                  After I get my web service response into a stream and JsonTextReader I try to deserialize like this:

                  (MyType)serializer.Deserialize(jsonTextReader, typeof(MyType));
                  

                  当然,我的结果是 null,因为 parseResponse 带有圆括号.

                  Of course I get null for a result because there is that pesky parseResponse with round brackets.

                  我看过 这个问题不幸的是,这无济于事.我实际上是使用 JsonTextReader 来输入 JSON,而不是字符串(并且更喜欢这样以避免创建巨大字符串的性能影响).即使我使用该问题的建议,它看起来也很危险,因为它使用了全局替换.如果没有使用流的好方法,那么安全解析字符串的答案就可以了.

                  I've taken a look at this question which unfortunately does not help. I'm actually using a JsonTextReader to feed in the JSON, rather than a string (and prefer so to avoid the performance hit of creating huge a string). Even if I'd use the suggestion from that question, it looks dangerous as it uses a global replace. If there is no good way to use a stream, an answer with safe parsing of strings would be okay.

                  推荐答案

                  如果我将您的问题解释如下:

                  If I interpret your question as follows:

                  我正在尝试从 Stream 中反序列化一些 JSON.JSON"实际上是 JSONP 格式,因此包含一些我想忽略的前缀和后缀文本.如何跳过前缀和后缀文本,同时仍然直接从流中读取和反序列化,而不是将整个流加载到字符串中?

                  I am trying to deserialize some JSON from a Stream. The "JSON" is actually in JSONP format and so contains some prefix and postfix text I would like to ignore. How can I skip the prefix and postfix text while still reading and deserializing directly from stream rather than loading the entire stream into a string?

                  然后您可以使用以下扩展方法从 JSONP 流中反序列化您的 JSON:

                  Then you can deserialize your JSON from a JSONP stream using the following extension method:

                  public static class JsonExtensions
                  {
                      public static T DeserializeEmbeddedJsonP<T>(Stream stream)
                      {
                          using (var textReader = new StreamReader(stream))
                              return DeserializeEmbeddedJsonP<T>(textReader);
                      }
                  
                      public static T DeserializeEmbeddedJsonP<T>(TextReader textReader)
                      {
                          using (var jsonReader = new JsonTextReader(textReader.SkipPast('(')))
                          {
                              var settings = new JsonSerializerSettings
                              {
                                  CheckAdditionalContent = false,
                              };
                              return JsonSerializer.CreateDefault(settings).Deserialize<T>(jsonReader);
                          }
                      }
                  }
                  
                  public static class TextReaderExtensions
                  {
                      public static TTextReader SkipPast<TTextReader>(this TTextReader reader, char ch) where TTextReader : TextReader
                      {
                          while (true)
                          {
                              var c = reader.Read();
                              if (c == -1 || c == ch)
                                  return reader;
                          }
                      }
                  }
                  

                  注意事项:

                  • 在构造 JsonTextReader 之前,我构造了一个 StreamReader 并跳过流中的第一个 '(' 字符.这个将 StreamReader 定位在实际 JSON 的开头.

                  • Prior to constructing the JsonTextReader I construct a StreamReader and skip past the first '(' character in the stream. This positions the StreamReader at the beginning of the actual JSON.

                  在反序列化之前,我设置了 JsonSerializerSettings.CheckAdditionalContent = false 告诉序列化程序忽略 JSON 内容结束后的任何字符.奇怪的是,尽管默认值似乎已经是 false,但有必要明确地执行此操作,因为 基础字段可以为空.

                  Before deserialization I set JsonSerializerSettings.CheckAdditionalContent = false to tell the serializer to ignore any characters after the end of the JSON content. Oddly enough it is necessary to do this explicitly despite the fact that the default value seems to be false already, since the underlying field is nullable.

                  通过将 StringReader 传递给 DeserializeEmbeddedJsonP(TextReader reader),可以使用相同的代码从 string 反序列化嵌入的 JSONP;.这样做可以避免通过修剪前缀和后缀文本来创建新字符串,因此即使是较小的字符串也可以提高性能和内存使用.

                  The same code can be used to deserialize embedded JSONP from a string by passing a StringReader to DeserializeEmbeddedJsonP<T>(TextReader reader);. Doing so avoids the need to create a new string by trimming the prefix and postfix text and so may improve performance and memory use even for smaller strings.

                  示例工作 .Net fiddle.

                  这篇关于如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)
                  c# JSON Serialization Use Value Instead of Property Name(c# JSON序列化使用值而不是属性名)

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

                        <legend id='RtXr6'><style id='RtXr6'><dir id='RtXr6'><q id='RtXr6'></q></dir></style></legend>

                        1. <tfoot id='RtXr6'></tfoot>
                            <tbody id='RtXr6'></tbody>

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