我正在尝试使用 jQuery 将转换为 JSON 的表单数据发送到另一个页面,. 但是,我相信我的 POST 方法不起作用,因为我总是收到错误消息 - 只显示“错误”。谁能帮我找出确切的错误或修改代码以使其正确?
我检查了数据是否正确地被 JSON 化(第一个警报显示正确的表单数据)。
$('#submit').click(function () {
var rows = [];
$('#Tinfo tbody tr').each(function () {
var tds = $(this).children('td'); /* taking all the td elements of the current tr */
rows.push({
'sl': tds.eq(0).find('input').val(),
'tname': tds.eq(1).find('input').val(),
'ttype': tds.eq(2).find('select').val(),
'tduration': tds.eq(3).find('input').val()
});
});
rows = JSON.stringify(rows);
alert(rows);
/* Using the post function to send data over to the database handler page */
$.ajax({
type: "POST",
url: "/Insert",
data: rows,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data, status) {
alert(status);
},
error: function (xhr, textStatus, error) {
console.log(xhr.statusText);
console.log(textStatus);
console.log(error);
}
});
});