该错误是由我想的数据部分引起的,但我找不到解决方案帖子失败,并且在 firefox firebug 上显示的错误是
There are no child objects
这里的代码
var PostData = '1';
jQuery.ajax({
type: "POST",
url: "myASM.asmx/SetOff",
data: PostData,
async: true,
contentType: "application/json; charset=utf-8",
dataType: "json"
});
这里是网络方法
[WebMethod]
public void SetOff(string prefixText)
{
HttpContext.Current.Session["SetDisplay"] = prefixText;
}