C# 类如何处理 JSON 中的美元符号?

发布于 2024-10-10 18:07:24 字数 338 浏览 3 评论 0原文

我从 Google 数据 API 等获取了 JSON Feed的属性名称以 $ 字符(美元符号)开头。

我的问题是我无法创建变量名称以美元符号开头的 C# 类,这是该语言不允许的。我正在使用 Newtonsoft 的 JSON.NET 将 JSON 转换为 C# 对象。我该如何解决这个问题?

I'm getting a JSON feed from Google's data API and a lot of the property names start with a $ character (dollar sign).

My problem is that I can't create a C# class with a variable name starting with a dollar sign, it's not allowed by the language. I'm using JSON.NET from Newtonsoft to convert JSON to C# objects. How can I get around this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

森林很绿却致人迷途 2024-10-17 18:07:25

您可以尝试使用 [JsonProperty] 属性来指定名称:

[JsonProperty(PropertyName = "$someName")]
public string SomeName { get; set; }

You could try using the [JsonProperty] attribute to specify the name:

[JsonProperty(PropertyName = "$someName")]
public string SomeName { get; set; }
半衾梦 2024-10-17 18:07:25

firas489 的观点是正确的,$ 表示元数据,而不是实际的数据字段。然而,修复实际上是这样做的:

JsonSerializerSettings settings = new JsonSerializerSettings();
settings.MetadataPropertyHandling = MetadataPropertyHandling.Ignore;            

将元数据处理设置为忽略,然后您可以使用 PropertyName 属性序列化/反序列化属性:

[JsonProperty("$id")]
public string Id { get; set; }

firas489 was on the right track that $ indicates metadata, not an actual data field. However the fix is actually to do this:

JsonSerializerSettings settings = new JsonSerializerSettings();
settings.MetadataPropertyHandling = MetadataPropertyHandling.Ignore;            

Set the metadata handling to ignore, and then you can serialize/deserialize the property using the PropertyName attribute:

[JsonProperty("$id")]
public string Id { get; set; }
没有伤那来痛 2024-10-17 18:07:25

那些带有美元符号 ($) 的项目通常意味着元数据而不是字段。当 JSON.NET 序列化对象并告诉它处理对象类型时,它将插入表示元数据的 $ 项目,以便稍后正确反序列化。

如果要将 $ 项目视为元数据,请使用 JsonSerializerSettings。例如:

Dim jsonSettings As New Newtonsoft.Json.JsonSerializerSettings With {.TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All}
Dim jsonOut As String = Newtonsoft.Json.JsonConvert.SerializeObject(objects, jsonSettings)

TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All 告诉 JSON 处理数据类型,同时依赖 $ 获取信息。

Those items with the dollar sign ($) are usually meant to be metadata and NOT fields. When JSON.NET serializes an object and you tell it to handle the object types, it will insert $ items that denotes metadata for correct deserialization later on.

If you want to treat the $ items as metadata, use JsonSerializerSettings. For example:

Dim jsonSettings As New Newtonsoft.Json.JsonSerializerSettings With {.TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All}
Dim jsonOut As String = Newtonsoft.Json.JsonConvert.SerializeObject(objects, jsonSettings)

The TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All tells JSON to handle the datatypes while relying on the $ for information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文