ASP.NET MVC的JSON序列化陷阱 2012-08-29 10:59 PM 1 18,795 在ASP.NET MVC中,可透過以下方式將物件轉為JSON字串傳給前端: public ActionResult TestJson() { return Json(DateTime.Now); } 而...