我有将数据写入表
的AJAX脚本这是代码
public ActionResult AddingInternalAppointment(string Start, string End, string Title)
{
Appointment appointment = new Appointment()
{
Start_appointment = Start,
End_appointment = End,
Title = Title
};
db.Appointments.Add(appointment);
db.SaveChanges();
return Json(new { Result = "Success", Message = "Saved Successfully" });
}
这是后端的代码
{{1}}
一切都好。数据写入表格。但我有问题,成功后我没有得到警告信息。
哪里有问题?
答案 0 :(得分:5)
success:
错字错误。你正在使用成功。检查并纠正它。
更改
sucess: function (da) {
要
success: function (da) {