我正在尝试在我的网站中构建一个新功能,这要求我从我在 Web 服务器上获得的数据库中检索单个值。为此,我使用 php 脚本服务器端,它使用 msqli 从数据库中检索数据。客户端我使用 Ajax 和 XMLhttpRequest 来调用 php 脚本。一切正常,我没有任何错误,只是我的 xml 总是有一个空响应,这让我认为我的 php 脚本有问题。你们能帮忙吗?下面包含一些代码。这是我的 php 脚本<?php$conn = new mysqli('localhost', 'nicolas', 'Password', 'RandomNumberHouse');if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); echo "error";} $HouseID = 6;$sql = "SELECT RandomVar FROM RandomVarHouse WHERE HouseID = $HouseID";$result = $conn->query($sql);$row = mysqli_fetch_array($result);$var = $row[2];echo $var;$conn-> close();?>这是我的 js 脚本function getRandomVar(){ xmlhttp = new XMLHttpRequest(); xmlhttp.open("GET","../inc/VarCommunication.php?"); xmlhttp.send(); xmlhttp.onreadystatechange = function() { if (this.readyState === 4 && this.status === 200) { var result = this.responseText; updateBackgroundColor(result); }; }} function updateBackgroundColor(number){ if( number < 100){ document.getElementById('mainBody').style.backgroundColor = 'red'; }}
1 回答
HUWWW
TA贡献1874条经验 获得超12个赞
you miss place semicolon in xmlhttp request. please try below code and verify result
<script>
function getRandomVar()
{
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","demo1.php");
xmlhttp.send();
xmlhttp.onreadystatechange = function()
{
if (this.readyState === 4 && this.status === 200)
{
var result = this.responseText;
alert(result);
//updateBackgroundColor(result);
}
};
}
</script>
添加回答
举报
0/150
提交
取消