要制作Google图表,请使用此模型的列表:
public class GraphEmployee
{
string month;
List<int> values;
...
}
当我尝试Json.encode(List<GraphEmployee)
时,我已经获得了正确数量的元素,但它们都是空的:[{},{},{},{},{},{},{},{},{},{},{},{}]
Json.encode()
无法对我的模型进行编码,还是我必须做一些特别的事情?
提前感谢您的帮助!