2

我正在使用 asp mvc,我正在像这样在我的程序的一部分中获取数据

 public List<IncidentPerAreaCount> getIncident()
    {
        int RondeboschCounter = 0;
        int ClaremontCounter = 0;
        int AthloneCounter = 0;
        List<IncidentPerAreaCount> IncidentAreaCount = new List<IncidentPerAreaCount>();
        IncidentPerAreaCount Rondebosch = new IncidentPerAreaCount();
        IncidentPerAreaCount Claremont = new IncidentPerAreaCount();
        IncidentPerAreaCount Athlone = new IncidentPerAreaCount();

        List<Report> Reports = GetReports();
        for (int i = 0; i < Reports.Count(); i++)
        {
            if (Reports.AsEnumerable().ElementAt(i).Area == "Rondebosch")
            {
                RondeboschCounter++;
            }
            else if (Reports.AsEnumerable().ElementAt(i).Area == "Claremont")
            {
                ClaremontCounter++;
            }
            else if (Reports.AsEnumerable().ElementAt(i).Area == "Athlone")
            {
                AthloneCounter++;
            }

        }
        Rondebosch.AreaName = "Rondebosch";
        Rondebosch.NumberOfIncidents = RondeboschCounter;
        Claremont.AreaName = "Claremont";
        Claremont.NumberOfIncidents = ClaremontCounter;
        Athlone.AreaName = "Athlone";
        Athlone.NumberOfIncidents = AthloneCounter;

        IncidentAreaCount.Add(Rondebosch);
        IncidentAreaCount.Add(Claremont);
        IncidentAreaCount.Add(Athlone);

        return IncidentAreaCount;
    }

然后我试图通过 Jquery 获取这个字符串

 var Reports = [];
    $.ajax({
    url: "Home/getIncident",
    async: false,
    dataType: 'json',
    success: function (json) { Reports = json.whatever; }
    });
    alert(Reports);

然而,警报功能一直是空的(即空文本框),而不是带有数据的 json 格式字符串。

请帮忙...

4

3 回答 3

1

您可以在 ajax 的成功函数中获取数据,而不是在 ajax 之外。尝试在成功中移动警报,然后您将获得数据。

var Reports = [];
        $.ajax({
        url: "Home/getIncident",
        async: false,
        dataType: 'json',
        success: function (json) { 
                 Reports = json.whatever; 
                 alert(Reports); //Right place
        }
        });
        alert(Reports); // Wrong place
于 2012-06-12T06:01:00.037 回答
1

您将警报放在错误的位置。

$.ajax({
    url: "Home/getIncident",
    async: false,
    dataType: 'json',
    success: function (json) {
        Reports = json.whatever; 
        alert(Reports); // should be here.
    }
});

在你跳入代码之前阅读这个这个。

于 2012-06-11T16:39:59.507 回答
0

我看到的第一件事是您没有序列化要返回的对象。你可以那样做

 return new JavaScriptSerializer().Serialize(your_object);

在客户端,您必须将 json 字符串转换为有效的 Js 对象,我在 json 响应字符串中使用“d”属性来做到这一点

var theObject = $.parseJSON(response.d);

并且 theObject 具有您需要的属性。

最后我看到你的对象是一个列表,你可以使用 $.each 进行迭代

于 2014-10-06T21:57:25.407 回答