基本问题:我使用 .save()函数将模型保存到我的数据库中。它成功地到达php并且php成功返回一个字符串。我已经检查了Google Chrome上的回复代码,并且回复状态 200 , statusText “确定”。我根本无法理解为什么它仍然进入错误句柄。我的代码以防万一;
urlToAdd.save({},
{
success:function()
{
console.log("In here");
},
error:function(model,response)
{
console.log(model.toJSON());
console.log(response);
console.log("Not in here");
}
});