C# 类如何处理 JSON 中的美元符号?
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试使用
[JsonProperty]
属性来指定名称:You could try using the
[JsonProperty]
attribute to specify the name:firas489 的观点是正确的,$ 表示元数据,而不是实际的数据字段。然而,修复实际上是这样做的:
将元数据处理设置为忽略,然后您可以使用 PropertyName 属性序列化/反序列化属性:
firas489 was on the right track that $ indicates metadata, not an actual data field. However the fix is actually to do this:
Set the metadata handling to ignore, and then you can serialize/deserialize the property using the PropertyName attribute:
那些带有美元符号 ($) 的项目通常意味着元数据而不是字段。当 JSON.NET 序列化对象并告诉它处理对象类型时,它将插入表示元数据的 $ 项目,以便稍后正确反序列化。
如果要将 $ 项目视为元数据,请使用 JsonSerializerSettings。例如:
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:
The
TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All
tells JSON to handle the datatypes while relying on the $ for information.