NetCore偶尔有用篇:NetCore项目WebApi返回Json属性大小写
2021-04-12 02:25
标签:问题 nec soscw netcore ima bapi tst json div 一、概述 1、前面文章介绍Controller的大小写问题时,目的只是介绍它的差异性,有同学回复了,这里把它作为一个点写一下吧。 二、默认定义的转换结果 1、写一个返回对象的方法。 2、运行查看结果。 api方法如下 运行结果 三、自定义转换方法 1、添加Startup自定义转换代码。 2、重新运行查看结果。 添加转换 一般情况下,我们还是使用默认的比较好。 NetCore偶尔有用篇:NetCore项目WebApi返回Json属性大小写 标签:问题 nec soscw netcore ima bapi tst json div 原文地址:https://www.cnblogs.com/chenyinxin/p/9015712.html
public class OneController : Controller
{
public Model GetString(string id)
{
return new Model() { ID = id, Name = "aa" };
}
}
public class Model
{
public string ID { get; set; }
public string Name { get; set; }
}
下一篇:c# AE实现栏选功能
文章标题:NetCore偶尔有用篇:NetCore项目WebApi返回Json属性大小写
文章链接:http://soscw.com/index.php/essay/74510.html