gpt4 book ai didi

php - 通过ajax同时在多个数据库中执行更新查询

转载 作者:行者123 更新时间:2023-11-29 21:54:56 32 4
gpt4 key购买 nike

例如,我使用date("h:i:s")。我尝试同时对多个数据库执行更新查询,但时间可能会相差 1 或 2 秒。我想知道是否还有其他方法可以同时执行它..

这是我的脚本

<script type="text/javascript">
<!--
function updateTimer() {
var db = "1,2,",
dbindex = db.split(","),
countdb = 2;
function retrieve(id) {
if(id < countdb) {
$.ajax({
url: 'update.php',
type: 'post',
data: {
idx : dbindex[id]-1
},
success: function (output) {
id++;
retrieve(id);
},
error: function () {
alert("Error Update");
}
});
}
}
retrieve(0);
}
//-->
</script>

更新.php

$idx = $_POST["idx"];
$conn = $db[$index[$idx]]; // testdb and test2db
$timer = date("h:i:s");
mysqli_query($conn,"update table set timer='".$timer."'");

最佳答案

是的。您可以在 POST 中发送 DB_ids 数组;

function retrieve(id) {
data = [];
for(;id<countdb;id++)
{
data.push(dbindex[id]-1)
}
$.ajax({
url: 'update.php',
type: 'post',
data: {
idx : data
},
success: function (output) {
alert("Ok!");
},
error: function () {
alert("Error Update");
}
});
}

if(isset($_POST["idx"])){
$idx = $_POST["idx"];
foreach($idx as $id){
$conn = $db[$index[$id]]; // testdb and test2db
$timer = date("h:i:s");
mysqli_query($conn,"update table set timer='".$timer."'");
}
}

但是您需要进行一些验证。

关于php - 通过ajax同时在多个数据库中执行更新查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33252558/

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