Tag: asp.net mvc 4数据表

Ajax错误 – jquery数据表

我在我的应用程序中使用jquery数据表。 当我尝试从服务器绑定json响应时,我在浏览器中收到以下消息 DataTables warning:table id=DataTables_Table_0-Ajax error.For more information about this error please seee http://datatables.net/tn/7 并在浏览器的控制台中 Failed to load resource: the server responded with a status of 500 (Internal Server Error) 。 当我深入到控制台时,我得到以下exceptionA circular reference was detected while serializing an object of type ‘System.Data.Entity.DynamicProxies.CenterCode_16F8807C95C21FEFA99B4700E38D8ACB4A88C8E560B5640BD5E1FA148C99CCA5’. 我不知道这意味着什么? Josn成功回归没有任何错误?我该如何解决这个问题? JsonResultfunction public JsonResult GetDataTable(string finYear) { try { Common _cmn […]

如何将jQuery DataTable应用于MVC4中的AJAX呈现局部视图?

我有一个部分观点: @model List @{ bool isPrint = (bool)ViewData[“isPrint”]; string printHeader = ViewData[“printHeader”].ToString(); int totalCount = 0; if (ViewData[“totalCount”] != null) { totalCount = (int)ViewData[“totalCount”]; } } @if (isPrint) { @Styles.Render(“~/Print/css”) } @if (isPrint) { @printHeader } Counts Total Count @totalCount District LEA Teachers Admins Total @foreach (var district in Model) { @district.Name @district.LEA @district.TeacherCount @district.AdminCount […]