为什么哦为什么这段代码不做任何事情?!我的ajax有什么问题? 我的阿贾克斯:
$.ajax({
type: "POST",
url: "/index.aspx/Uppdatera",
data: "{ Id:"+ JSON.stringify($item.Id) +" }",
error:
alert("error")
});
我的C#:
[WebMethod(EnableSession = true)]
public static void Uppdatera(object id)
{
id.ToString();
using (StreamWriter s = new StreamWriter("C:/Users/robert/Documents/visual studio 2013/Projects/GolvProjektet/GolvProjektet/hej.txt"))
{
s.Write("hej" + id);
}
}
答案 0 :(得分:0)
在ajax调用中添加contentType y dataType:
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "/index.aspx/Uppdatera",
data: "{ Id:"+ JSON.stringify($item.Id) +" }",
error:
alert("error")
});