我正在编写这个jquery脚本,通过ajax将数据发送到php文件。它工作,但我收到此错误。谁能告诉我怎么解决这个问题?代码发布在下面,因此是错误。
以下是我发送数据后的错误。
项目未定义:if(item.guid!= null)
以下是代码:
// Data
dataObj = { correctAnswers: correctAnswers,
startTime:startTime,
startDate:startDate
};
//Post Data To contorler
$.ajax({
type: "POST",
url: "save",
data: dataObj,
success: function(data) {
//Need to return the file contents somehow!
alert("Data sucessfully Sent\n");
}
});
答案 0 :(得分:-1)
您需要指定将json发送到服务器。您需要将以下选项添加到$ .ajax
contentType: "application/json; charset=utf-8"
否则该功能默认为期待标准表格。