gpt4 book ai didi

javascript - 在网站加载时在 AJAX 中加载 PHP 文件

转载 作者:行者123 更新时间:2023-12-02 16:29:04 25 4
gpt4 key购买 nike

我有一个 php 文件,可以从目录中检索最新的 100 张图像。我有一个脚本可以自动重新加载 php 文件,以便我们可以通过 javascript 使用数据。

但问题是,我们没有收到网站加载的信息,而是在 php 文件重新加载 2 次之后才收到。我们需要网站负载数据来实现其他功能。

谁能帮我吗?

谢谢!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="../js/jquery.js"></script>
<script>

var array = [];

$(document).ready(function () {

window.setInterval(function () {
$(function () {
$.ajax({
type: 'POST',
url: 'update.php',
cache: false,
success: function (result) {
array = result;
},
dataType: "json"
});
});
var index;
var text = "<ul>";
for (index = 0; index < array.length; index++) {
text += "<li>" + array[index] + "</li>";
}
text += "</ul>";

document.getElementById("demo").innerHTML = text;
}, 5000);

});
</script>

</head>

<body>
<p id="demo"></p>
</body>
</html>

PHP文件数组导出:

echo json_encode($files); 

最佳答案

var array = [];
function displayArray(array) {
var text = "<ul>";
for (var index = 0; index < array.length; index++)
text += "<li>" + array[index] + "</li>";
text += "</ul>";
$("#demo").html(text);
}
$(document).ready(function() {
array = <? php echo json_encode($files); ?> ;
displayArray(array);
window.setInterval(function() {
$.ajax({
type: 'POST',
url: 'update.php',
cache: false,
success: function(x){
array = x;
displayArray(array);
},
dataType: "json"
});
}, 5000);
});

编辑:我为你设置了全局数组,我认为这就是你误认为“加载”的地方。

关于javascript - 在网站加载时在 AJAX 中加载 PHP 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28459924/

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