这是我的数组:

{latlng: [{lat: 41.9841092242239, lng: -87.6459866168}, {lat: 41.948650308164744, lng: -87.64431828280067}, {lat: 41.94833112697515, lng: -87.644017875391}]


这是我的JavaScript代码:

  var postedData = JSON.stringify({
                latlng: boundaries
            });

            alert("here are your boundaries so far : " + postedData);

            $.ajax({
                url: '/Communities/UpdateBoundaries',
                type: "POST",
                traditional: true,
                contentType: "application/json",
                data: postedData,
                datatype: "json",
                success: function () {
                    console.log('success!!');
                }
            });
        }


这是我的控制器:bounds是我传入的latlng数组,但它为null。

   [HttpPost]
    public ActionResult UpdateBoundaries(List<latLng> boundaries)
    {
        return View();
    }

最佳答案

更改

var postedData = JSON.stringify({latlng: boundaries});




var postedData = JSON.stringify(boundaries);


这是因为action参数是一个数组。如果它是包含属性名称为latlng的数组属性的类型,则以与现有代码相同的方式传递它。

10-08 01:08