我已经被这个问题困住了一段时间
我正在尝试通过 jQuery/AJAX 向我的数据库添加一个对象。显然,没有错误,但它没有向我的数据库添加任何内容。
这是我的 JS/JQuery 代码:
var student = new Object();
student.Name = $("#txtNameAdd").val();
student.Age = $("#txtAgeAdd").val();
student.Email = $("#txtEmailAdd").val();
$.ajax({
type: "POST",
url: "Default.aspx/AddStudent",
data: "{'studentJSONString':'" + JSON.stringify(student) + "'}",
success: function (response) {
$("#lblSuccessAdd").text("Success!");
$("#lblSuccessAdd").css("display", "block");
},
error: function (response) {
alert(response.responseJSON);
}
});
我的 JS 代码指向我在 Default.aspx 页面代码中的这段代码:
[WebMethod]
public static void AddStudent(string studentJSONString)
{
JavaScriptSerializer converter = new JavaScriptSerializer();
Student a = converter.Deserialize<Student>(studentJSONString);
WebMethods.AddStudent(a);
}
它指向我的 WebMethods.cs 类中的这段代码
[WebMethod]
public static void AddStudent(Student student)
{
MasterStudent master = new MasterStudent();
master.AddStudent(student);
}
最后转到我的类库并在 MasterStudent 中使用此方法完成:
public void AddStudent(Student student)
{
if (string.IsNullOrWhiteSpace(student.Name))
{
throw new Exception("There's no name");
}
if (string.IsNullOrWhiteSpace(student.Email))
{
throw new Exception("There's no email");
}
using (studentEntities model = new studentEntities())
{
model.student.Add(student);
model.SaveChanges();
}
}
我运行代码,控制台没有记录任何问题,但它也没有做任何事情。
我已经在 Forms 应用程序上运行了非常相似的代码,没有出现任何问题,所以我现在有点不知所措。有谁知道为什么它总是失败?
富国沪深
FFIVE
相关分类