weixin_33676492 2016-05-07 14:19 采纳率: 0%
浏览 45

ASP.NET Ajax返回null

Tried reading other similar questions but can't quite detect what's wrong with mine. I'm attempting to build an ajax call as follows:

$.ajax({
    type: "POST",
    url: '@Url.Action("Search", "Map")', // Map Controller, Search Action
    data: JSON.stringify({ "Location": x }),
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (data) {
        var table = "<table class='table'>";
        $.each(data, function (index, value) { // For each element in data:
            table += "<tr><td>" + value.title + "</td></tr>"; // add it to the table list
            var latlng = new google.maps.LatLng(value.latitude, value.longitude);
            var marker = new google.maps.Marker({
                position: latlng,
                map: map
            });

            gmarkers.push(marker);
        });
        table += "</table>";
        $("#myData").html(table);
    }
});

It's supposed to send the text acquired from:

$("#txtSearch").keyup(function () {
    var x = $("#txtSearch").val();

Now the text is acquired correctly, therefore 'x' does have a value when it's submitted. But once the ajax request above is processed the method being called which is the Search Action under the MapController is called with a null parameter:

[HttpPost]
public ActionResult Search (string title)
{
    Entities mapEntity = new Entities();
    string userId = User.Identity.GetUserId();
    var result = mapEntity.Markers.Where(x => x.title.StartsWith(title) && x.UserId == userId).ToList();
    return Json(result, JsonRequestBehavior.AllowGet);
}

As long as the title remains null I can't really do anything with it... Appreciate any help on resolving this issue.

  • 写回答

2条回答 默认 最新

  • weixin_33698823 2016-05-07 14:21
    关注

    Try replacing those 2 parameters of your AJAX request:

    data: JSON.stringify({ "Location": x }),
    contentType: "application/json; charset=utf-8",
    

    with this simple expression:

    data: { title: x },
    

    Notice that your action parameter is called title so that's what you should be sending.


    UPDATE:

    To resolve the 500 Internal Server error that you are getting, stop passing your domain entities to the views because they might contain circular references that cannot be JSON serialized. As always, use a view model to project your domain entities and include only the relevant information for the view:

    var viewModel = result
        .Select(x => new 
        { 
            Prop1 = x.SimpleProp1, 
            Prop2 = x.SimpleProp2,
            Prop3 = x.NestedProp.Prop3,
        })
        .ToList();
    
    return Json(viewModel, JsonRequestBehavior.AllowGet);
    

    Btw, if you had inspected the AJAX request in the network tab of your browser, you would have seen that the response from your server is an YSOD in which the precise cause for the error is written.

    Check it out so that you know how to debug those kind of problems next time (I have highlighted the important parts you should be looking at):

    enter image description here

    评论

报告相同问题?

悬赏问题

  • ¥15 2024-五一综合模拟赛
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭