我正在从MVC控制器动作返回一个JsonResult,并且一直试图删除一个属性但没有太多的快乐。
return Json(db.Pages.ToList(), JsonRequestBehavior.AllowGet);
我尝试用
来装饰我的课程[IgnoreDataMember]
属性,并在类的其他属性上使用[DataContract]和[DataMember]属性,但这似乎被忽略了。
我在这里发现了一条帖子,其中说明以这种方式返回json将使用该JavaScriptSerializer,我尝试使用[ScriptIgnore],但vs2010不会将此识别为有效属性。 http://teamezy.blogspot.com/2008/12/making-jsonresult-in-mvc-ignore.html
我是否需要以不同的方式返回数据才能使IgnoreDataMember或DataContract / DataMember工作?
答案 0 :(得分:15)
ScriptIgnoreAttribute
位于System.Web.Script.Serialization
命名空间中 - 您是否有适当的using
指令并引用System.Web.Extensions
程序集?
请务必将ProxyCreationEnabled
设为false。
context.Configuration.ProxyCreationEnabled = false;