我想将C#类作为JSON对象返回:
这是我的开关代码:
public IDatasource GetDataSource(DataSourceType type)
{
switch (type)
{
case DataSourceType.CONTROL:
return new ControlDS();
case DataSourceType.RISK:
return new RiskDS();
case DataSourceType.MOI:
return new MoiDS();
case DataSourceType.LOSSEVENTS:
return new LossEventDS();
case DataSourceType.KRI:
return new KriDS();
default:
throw new ArgumentOutOfRangeException();
}
}
对于每种类型,它必须返回整个类。我们假设类型为KRI
,它必须返回类KriDS
这就是它的样子:
public class KriDS : IDatasource
{
public string Description()
{
var description = "This is a description";
return description;
}
public string Name()
{
var kriname = "Test1";
return kriname;
}
public int[] Values()
{
int[] values = new int[] { 1, 5, 7, 6, 7 };
return values;
}
}
在我的控制器中,我使用以下方法:
[HttpGet]
public string GetDataSource(string id)
{
// var type = (DataSourceType)id;
DataSourceType type;
if(!Enum.TryParse(id, out type))
{
throw new ArgumentOutOfRangeException();
}
var o = _dashboarBusiness.GetDataSource(type = DataSourceType.KRI);
return Newtonsoft.Json.JsonConvert.SerializeObject(o);
}
当我返回var o
我想要返回
{"description": "This is a description", "name": "Test1", "values": "[{1 5, 7, 6, 7}]"}
当我返回它时,对象为空。
如何将方法的值返回到JSON对象?
有人能指出我正确的方向吗?
亲切的问候
答案 0 :(得分:3)
您必须定义属性或字段以序列化对象。例如:
void
答案 1 :(得分:2)
您需要创建字段/属性,而不是方法。方法可以填充那些。试试这个:
public class KriDS : IDatasource
{
public string description = "This is a description";
public string name = "Test1";
public int[] values = new int[] { 1, 5, 7, 6, 7 };
}
答案 2 :(得分:2)
如果你的方法是静态的,你可以根据需要为它们分配cosibonding字段。
public class TestObj
{
public String someString = SomeString();
public static String SomeString()
{
return "a String";
}
}
json searialiser只有Serialises字段