gpt4 book ai didi

jquery - 如何将数组分成 block 并将它们发布到mysql?

转载 作者:行者123 更新时间:2023-11-30 01:27:33 25 4
gpt4 key购买 nike

我的使用值(value)

var data = [];

$('#customers > tbody > tr').each(function(){


var rollno=$(this).find('td:nth-child(2)').text();
var marks=$(this).find('td:nth-child(4)').find('input').val();


if(marks=='' ||subjcode=='')
{
alert('marks is null')
}
else
{
data.push(rollno);
data.push(subjcode);
data.push(marks);
//data.push(teacherid);
}

})//each

实际上我得到了一个包含多个值的数组,但我想将它们分成 3 个 int block 并将它们发布到数据库中......该怎么办?

我可以使用 foreach 发布它们吗?如果是的话怎么办?如果没有那么还有什么其他方法?

最佳答案

你的意思是这样的吗?

$("#customers > tbody  > tr").each(function(){
var rollno = $(this).find("td:nth-child(2)").text();
var subjcode $(this).find("td:nth-child(3)").text();
var marks = $(this).find("td:nth-child(4)").find("input").val();

if (marks == "" || subjcode == "") {
console.log("marks is null")
} else {
$.ajax({
url: "your-data-handler.php",
type: "POST",
data: {
rollno: rollno,
subjcode: subjcode,
marks: marks
},
success: function() {
// success handler
},
error: function() {
// error handler
}
});
}
});

我已经猜测了 subjcode 的值,但它是一个将数据推送到可以处理它并将其保存到数据库的 php 文件的示例。

不过,我真的建议立即发送所有数据。许多请求会产生大量开销,并减慢用户和 Web 服务器的处理速度。

关于jquery - 如何将数组分成 block 并将它们发布到mysql?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17810699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com