参数传递为' null'当使用Jquery Grid ajax调用绑定网格数据时

时间:2016-11-17 05:00:00

标签: javascript jquery asp.net ajax asp.net-mvc-4

我有一个Jquery网格,我使用ajax调用绑定到控制器。 在ajax调用期间,控制器方法被命中,但参数值作为null传递给控制器​​方法。

参数值在ajax属性'data:'

中正确绑定

这是我的JavaScript代码:

function BindGridData()
    {


        var BUids=$("#ddlBU").val().join(",");

        var Zoneids=$("#ddlZone").val().join(",");
        var Regionsids=$("#ddlRegion").val().join(",");
        var Territoryids=$("#ddlTerritory").val().join(",");
        $("#tblJQGrid").jqGrid(
        {url: "@Url.Action("GetGeographyBreakUpData", "GeoMap")",
            datatype: "json",
            data: "{BUIds :'" + BUids + "',ZoneIds:'"+Zoneids+"',RegionIds:'"+Regionsids+"',TerritoryIds:'"+Territoryids+"'}",
            mtype: 'GET',
            colNames: ['Id','GeoGraphy', 'Completed', 'InProgress'],
            colModel: [
            { name: 'Id', index: 'Id', width: 20, stype: 'text',hidden:true },
            { name: 'Geography', index: 'Geography', width: 150 },
            { name: 'Completed', index: 'Completed', width: 150 },
            { name: 'InProgress', index: 'InProgress', width: 150 },
            ],rowNum: 10,
            sortname: 'Id',
            viewrecords: true,
            sortorder: "desc",
            caption: "Geographical Survey Status",
            scrollOffset: 0});

        var res=$('#ddlResponseType').val();
        res=res.join(',');
        if(res=='1')
        {
            $("#tblJQGrid").hideCol("Completed");
        }
        else if(res == '2')
        {
            $("#tblJQGrid").hideCol("InProgress");
        }
        else
        {
            $("#tblJQGrid").showCol("InProgress");
            $("#tblJQGrid").showCol("Completed");
        }

    }

这是我的控制器方法

public string GetGeographyBreakUpData(string BUIds, string ZoneIds, string RegionIds, string TerritoryIds, string MarketIds, string FOIds, string ResponseTypeIds, string FromDate, string ToDate, string GridBreakUpLevel)
{
}

有人可以告诉我我的代码有错吗?

更新 我试图使用Params数组发送值, 即便如此,Params数组也会传递为null

这是更新后的代码

var BUids=$("#ddlBU").val();
var Zoneids=$("#ddlZone").val();
var Regionsids=$("#ddlRegion").val();
var Territoryids=$("#ddlTerritory").val();
Params = new Array();
Params.push(BUids);
Params.push(Zoneids);
Params.push(Regionsids);
Params.push(Territoryids);
Params = Params.join("|");

$("#tblJQGrid").jqGrid(
    {url: "@Url.Action("GetGeographyBreakUpData", "GeoMap")",
        datatype: "json",
        data: { "Parameters": Params },
        mtype: 'GET',
        colNames: ['Id','GeoGraphy', 'Completed', 'InProgress'],
        colModel: [
        { name: 'Id', index: 'Id', width: 20, stype: 'text',hidden:true },
        { name: 'Geography', index: 'Geography', width: 150 },
        { name: 'Completed', index: 'Completed', width: 150 },
        { name: 'InProgress', index: 'InProgress', width: 150 },
        ],rowNum: 10,
        sortname: 'Id',
        viewrecords: true,
        sortorder: "desc",
        caption: "Geographical Survey Status",
        scrollOffset: 0});

控制器

public string GetGeographyBreakUpData(string Parameters)
{
}

即使这样也行不通。

1 个答案:

答案 0 :(得分:1)

据我所知,由于datadatatype: json属性无法形成查询字符串参数。不是因为它不正确,而是可能将其转换为content-type "application/x-www-form-urlencoded"

我怀疑processData属性可能是导致失败的原因。我几乎没有尝试过这方面的支持,如果他们发现其他情况,我可以让人们编辑这个答案。

关于我们以传统方式设置参数的问题

url: "@Url.Action("GetGeographyBreakUpData", "GeoMap")"+"?BUIds='"+ BUids + "'&ZoneIds='"+Zoneids+"'&RegionIds='"+Regionsids+"'&TerritoryIds='"+Territoryids+"'"

如果我发现更多内容,我会更新此内容。只是想分享这个jQuery.param()