为什么下面的代码应该返回 "{"id":1999, "title":"hithere"} 时返回 "[ ]"
JavaScriptSerializer serializer = new JavaScriptSerializer();
StringBuilder sbJsonResults = new StringBuilder();
var result = serializer.Serialize(new dg(1999, "hithere"));
context.Response.Clear();
context.Response.ContentType = "application/json; charset=utf-8";
context.Response.Cache.SetExpires(DateTime.MinValue);
context.Response.Write(result);
PS dg 类如下所示:
public class dg : ScheduleObserver, ILibrary, IEnumerable {
public int id;
public string title;
private List<d> dList;
...many getters and setters and some logic functions...
}
public abstract class ScheduleObserver{
public abstract void update();
}
public interface ILibrary {
List<PD> getPDs();
void setPDs(List<PD> newPDs);
int getCurrentIndex();
void addPD(PD pD);
PD getPD(int index);
}
非常感谢。
谢谢 - 回答成功 - IEnumerable 是我痛苦的根源。为了解决这个问题,dg 不再扩展 IEnumerable 并且所有 foreach (dg...) 循环都已转换回 for(int i = 0...) 循环。
非常非常感谢!JAMES 知道为什么它是空的,Parv 知道为什么有方括号。将两者都标记为答案,但只能标记一个。