Easyui DataGrid Load 方法,后台怎么取值

前台

 function getSelect() {
            $('#dgSecurityStaff').datagrid('load',{
                name: $("#Name").combobox("getText"),
                state: $('#State').combobox('getValue'),
                idNumber: $('#IDNumber').textbox('getText'),
                age: $('#Age').combobox('getValue'),
                position: $('#Position').combobox('getValue')
                                });
                                }

后台除了Request["name"]取值外,还有哪些取值

get/post提交的数据不都是Request,你还想怎么获取?

如果是webservice,easyui不支持直接传递json字符串,都是键值对,需要修改你的webservice方法,用Request来获取