c#webmethod解析字典作为参数

时间:2017-10-19 04:21:06

标签: c# jquery webmethod

如何从jquery接收数据,如:data [q]

我尝试使用

    [WebMethod]
    [ScriptMethod(UseHttpGet = true)]
    public string GetListData(Dictionary data)
    {
        return "test";
    }

ajax part

$("#tmptest").ajaxChosen(
      { type: 'GET',
        url: '/ajax/testing.asmx/GetLocationsDetail',
        dataType: 'json' },
        function (data) 
             {
                var terms = {};
                $.each(data, function (i, val) {
                       terms[i] = val; 
                      });
                return terms;
     });

并且出现了http 500错误,真的不知道导致该错误的问题是什么

感谢您的帮助

0 个答案:

没有答案