如何删除 json 结果的 $?

How to remove $ for json result?

我正在尝试从简单的 google sheet

中读取单元格值

https://docs.google.com/spreadsheets/d/1opP1t_E9xfuLXBkhuyzo5j9k_xBNDx0XKb31JwLP1MM/edit?usp=sharing

然后我发布了它,我得到了 API link return JSON, 检查以下内容 https://spreadsheets.google.com/feeds/list/1opP1t_E9xfuLXBkhuyzo5j9k_xBNDx0XKb31JwLP1MM/1/public/values?alt=json

当我尝试使用 http://json2csharp.com/JSON 生成 C# classes 时,我得到

invalid_name and $ (which is not fine for csharp compiler)

public class Id
{
    public string __invalid_name__$t { get; set; }
}

public class Updated
{
    public DateTime __invalid_name__$t { get; set; }
}

public class Category
{
    public string scheme { get; set; }
    public string term { get; set; }
}

public class Title
{
    public string type { get; set; }
    public string __invalid_name__$t { get; set; }
}

public class Link
{
    public string rel { get; set; }
    public string type { get; set; }
    public string href { get; set; }
}

public class Name
{
    public string __invalid_name__$t { get; set; }
}

public class Email
{
    public string __invalid_name__$t { get; set; }
}

public class Author
{
    public Name name { get; set; }
    public Email email { get; set; }
}

public class OpenSearchTotalResults
{
    public string __invalid_name__$t { get; set; }
}

public class OpenSearchStartIndex
{
    public string __invalid_name__$t { get; set; }
}

public class Id2
{
    public string __invalid_name__$t { get; set; }
}

public class Updated2
{
    public DateTime __invalid_name__$t { get; set; }
}

public class Category2
{
    public string scheme { get; set; }
    public string term { get; set; }
}

public class Title2
{
    public string type { get; set; }
    public string __invalid_name__$t { get; set; }
}

public class Content
{
    public string type { get; set; }
    public string __invalid_name__$t { get; set; }
}

public class Link2
{
    public string rel { get; set; }
    public string type { get; set; }
    public string href { get; set; }
}

public class GsxName
{
    public string __invalid_name__$t { get; set; }
}

public class GsxPhonenumber
{
    public string __invalid_name__$t { get; set; }
}

public class Entry
{
    public Id2 id { get; set; }
    public Updated2 updated { get; set; }
    public List<Category2> category { get; set; }
    public Title2 title { get; set; }
    public Content content { get; set; }
    public List<Link2> link { get; set; }
    public GsxName __invalid_name__gsx$name { get; set; }
    public GsxPhonenumber __invalid_name__gsx$phonenumber { get; set; }
}

public class Feed
{
    public string xmlns { get; set; }
    public string __invalid_name__xmlns$openSearch { get; set; }
    public string __invalid_name__xmlns$gsx { get; set; }
    public Id id { get; set; }
    public Updated updated { get; set; }
    public List<Category> category { get; set; }
    public Title title { get; set; }
    public List<Link> link { get; set; }
    public List<Author> author { get; set; }
    public OpenSearchTotalResults __invalid_name__openSearch$totalResults { get; set; }
    public OpenSearchStartIndex __invalid_name__openSearch$startIndex { get; set; }
    public List<Entry> entry { get; set; }
}

public class RootObject
{
    public string version { get; set; }
    public string encoding { get; set; }
    public Feed feed { get; set; }
}

我想序列化和反序列化这个 class,我还想删除 $,我需要做什么?

显然 json2csharp 将每个 json 对象转换为 class 并将键名按字面意思转换为变量名。因此,每当它找到以 $ 开头的键名时,它就无法创建具有此字符的 c# 变量,并且它会在变量名前加上 _invalid_name_。这里没有错。

你应该说说为什么要从变量名中删除这个 invalid_name 短语?你想序列化和反序列化这个 class 吗?如果是这样,您可以使用 NewtonSoft Json 库并用 $ 符号定义这些字段,如下所示:

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

这将允许您serialize/deserialize json 文档

gsx$name 相同:

[JsonProperty(PropertyName = "gsx$name")]
public string gsxname { get; set; }