如何从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错误,真的不知道导致该错误的问题是什么
感谢您的帮助