- 注册时间
- 2014-1-13
- 最后登录
- 2014-4-1
- 阅读权限
- 10
- 积分
- 204
- 精华
- 0
- 帖子
- 76
|
webyao 发表于 2014-2-19 14:20
好的,那我照这样试试,谢谢!~~
在前台提交的数据是这种形式
$.ajax({
url: "../AjaxService.aspx?method=SaveEmployees",
type: 'post',
data: { data: json,data2: json2 },
cache: false,
success: function (text) {
alert("提交成功,返回结果:" + text);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
CloseWindow();
}
});
在后台要如何取到data2的数据呢?(data2的数据是从treegrid中获取的)
String json = Request["data"];
String json1 = Request["data.data2"];
if (String.IsNullOrEmpty(json1)) return;
我先前这样取数据,取不到!请问要如何做呢?
|
|