簡體   English   中英

我想在Asp.Net MVC中使用Ajax顯示表數據。 這種Ajax語法有什么問題?

[英]I want to show table data using Ajax in Asp.Net MVC. What is wrong with this Ajax syntax?

我想使用Ajax請求顯示表數據。

這是我的Ajax語法:

  $(document).ready(function() {
                var table = $("#attendance").DataTable({
                    ajax: {
                        url: '@Url.Action("GetAttendance", new {id = Model.Student.Id})',
                        dataSrc: ""
                    },
                    columns: [
                        {
                            data: "Date",
                            render: function(data) {
                                return data;
                            }
                        },
                        {
                            data: "Status.StudentStatus",
                            render: function(data) {
                                return data;
                            }

                        }
                    ]
                });

這是我的操作方法:

  public JsonResult GetAttendance(int id)
    {
        var studentAttendance = _context.Attendances.ToList().Where(m => m.StudentId == id);
        return Json(studentAttendance, JsonRequestBehavior.AllowGet);
    }

現在,我在哪里錯了?

請插入以下示例。 如果您不介意,請按照我的示例進行操作,然后就可以解決您的問題。

控制器/型號:

public class AjaxViewModel
{
    public string theDate { get; set; }
    public string StudentStatue { get; set; }
}

public class HomeController : Controller
{
    public string GetAttendance()
    {
        AjaxViewModel aViewModel = new AjaxViewModel { StudentStatue = "stat4", theDate = "12/24/2005" };
        AjaxViewModel aViewModel2 = new AjaxViewModel { StudentStatue = "stat5", theDate = "12/24/2005" };
        AjaxViewModel aViewModel3 = new AjaxViewModel { StudentStatue = "stat6", theDate = "12/24/2005" };

        IList<AjaxViewModel> data = new List<AjaxViewModel>();
        data.Add(aViewModel);
        data.Add(aViewModel2);
        data.Add(aViewModel3);

        JavaScriptSerializer js = new JavaScriptSerializer();
        string json = js.Serialize(data);
        json = "{ \"data\": " + json;
        json = json + " }";
        return json;
    }

視圖:

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index2020</title>
    <script src="~/Scripts/jquery-1.12.4.min.js"></script>
    <link href="~/Content/DataTables/css/jquery.dataTables.min.css" rel="stylesheet" />
    <script src="~/Scripts/DataTables/jquery.dataTables.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $("#uiDataTable").DataTable({
                "ajax": '@Url.Action("GetAttendance")',
                columns: [
                    {
                        "data": "theDate"
                    },
                    {
                        "data": "StudentStatue"
                    }
                ]
            });
        })
    </script>
</head>
<body>
    <table id="uiDataTable" class="display table table-striped table-bordered">
        <thead>
            <tr>
                <th>
                    Date
                </th>
                <th>
                    Status
                </th>

            </tr>
        </thead>
    </table>
</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM