最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to return the multiple lists from controller action to ajax success call back function - Stack Overflow

programmeradmin1浏览0评论

I am creating a mvc project in which i have the jquery ajax request is as follows

$.ajax({
        url: "@Url.Action("getdata", "SeatPlans")",
        data: { seat_plane_id : 17},
    type: "POST",
    dataType: "json",
    success: function (data) {
        loadData(data);
    },
    error: function () {
        alert("Failed! Please try again.");
    }
});

which call the following controller action

public JsonResult getdata(int seat_plane_id)
    {
        int lid = seat_plane_id;
        List<SeatPlans> allUser = new List<SeatPlans>();
        allUser = db.SEATPLAN.Where(d => d.layout_id == lid).ToList();
        lid++;
        List<SeatPlans> allUser1 = new List<SeatPlans>();
        allUser1 = db.SEATPLAN.Where(d => d.layout_id == lid).ToList();

        return new JsonResult { Data = allUser,JsonRequestBehavior = JsonRequestBehavior.AllowGet };
    }

the code is working fine. the controller action send the data in allUser to callback function.

but what i need is that i want to send both data in alluser and allUser1 to the success function of ajax call

I am creating a mvc project in which i have the jquery ajax request is as follows

$.ajax({
        url: "@Url.Action("getdata", "SeatPlans")",
        data: { seat_plane_id : 17},
    type: "POST",
    dataType: "json",
    success: function (data) {
        loadData(data);
    },
    error: function () {
        alert("Failed! Please try again.");
    }
});

which call the following controller action

public JsonResult getdata(int seat_plane_id)
    {
        int lid = seat_plane_id;
        List<SeatPlans> allUser = new List<SeatPlans>();
        allUser = db.SEATPLAN.Where(d => d.layout_id == lid).ToList();
        lid++;
        List<SeatPlans> allUser1 = new List<SeatPlans>();
        allUser1 = db.SEATPLAN.Where(d => d.layout_id == lid).ToList();

        return new JsonResult { Data = allUser,JsonRequestBehavior = JsonRequestBehavior.AllowGet };
    }

the code is working fine. the controller action send the data in allUser to callback function.

but what i need is that i want to send both data in alluser and allUser1 to the success function of ajax call

Share Improve this question edited May 13, 2016 at 9:38 rakshith asked May 13, 2016 at 9:30 rakshithrakshith 7842 gold badges11 silver badges28 bronze badges 4
  • show your controller code – Nazmul Hasan Commented May 13, 2016 at 9:35
  • 1 one minute there is some problem while editing – rakshith Commented May 13, 2016 at 9:37
  • What's with the pre tag with your JS? – evolutionxbox Commented May 13, 2016 at 9:38
  • sory sir by mistack that tag included – rakshith Commented May 13, 2016 at 9:40
Add a ment  | 

3 Answers 3

Reset to default 7

I imagine you want to keep the lists separated. Wrap them in an object.

var data = new { allUser = allUser , allUser1 = allUser1 }; 
return Json(yourObject, JsonRequestBehavior.AllowGet);

You can access them in your JS like this:

success: function (data) {
   var allUser = data[0];
   var allUser1 = data[1];
   //use the data as you see fit.
   loadData(allUser);
   loadData(allUser1 );
},

You just have to modify your Where clause so you don't need two different lists for the users. Try this in your getdata method:

public JsonResult getdata(int seat_plane_id)
{
    int lid = seat_plane_id;
    List<SeatPlans> allUser = new List<SeatPlans>();
    allUser = db.SEATPLAN.Where(d => d.layout_id == lid || d.layout_id == (lid+1)).ToList();

    return new JsonResult { Data = allUser,JsonRequestBehavior = JsonRequestBehavior.AllowGet };
}

allUser now includes all the desired data.

I would create a class that has 2 properties

int lid = seat_plane_id;
List<List<SeatPlans>> listOfSeatPlans (a collection of collections)

List<List<SeatPlans>> list = new ...
list.Add(allUser);
list.Add(someUsers);

Now you can return the class object back to JSON

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论