试图在很多论坛中找到我的答案,找到一个主要答案,但出于某些原因在我的案例中不起作用。
Web开发的新手。我正在尝试编写一个非常简单的JS程序,它使用一系列产品(由JSON字符串表示),并返回一个包含产品的HTML表。为了使用DB数据,我使用AJAX。 到目前为止,我有两个文件,一个PHP和一个JS文件。
JS文件(show.js)调用的服务器上的页面是一个名为" testmysql.php"的PHP文件。
问题是我在两个文件中都有共享参数,因此我需要在PHP文件中包含JS文件。
**" show.js" :**
<html>
<head>
<script>
function showUser(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("GET","testmysql.php?q="+str,true);
xmlhttp.send();
}
}
</script>
</head>
</html>
**&#34; testmysql.php&#34; :**
<html>
<head>
<script type="text/javascript" src="show.js"></script>
<style>
table {
width: 100%;
border-collapse: collapse;
}
table, td, th {
border: 1px solid black;
padding: 5px;
}
th {text-align: left;}
</style>
</head>
<body>
<?php
//Sample Database Connection Script
//Setup connection variables, such as database username
//and password
$hostname="localhost";
$username="root";
$password="";
$dbname="grocery";
$usertable="grocery";
$yourfield = "NAME";
$q = intval($_GET['q']);
//Connect to the database
$connection = mysqli_connect($hostname, $username, $password);
mysqli_select_db($connection, $dbname);
$query="SELECT * FROM user WHERE id = '".$q."'";
$result = mysqli_query($connection,$query);
echo "<table>
<tr>
<th>Name</th>
<th>Price</th>
<th>Amount</th>
</tr>";
if($result){
while($row = mysqli_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['NAME'] . "</td>";
echo "<td>" . $row['PRICE'] . "</td>";
echo "<td>" . $row['AMOUNT'] . "</td>";
echo "</tr>";
}
}
echo "</table>";
mysqli_close($connection);
/*
//Setup our query
//$query = "SELECT * FROM $usertable";
Run the Query
$result = mysqli_query($connection,$query);
//If the query returned results, loop through
// each result
if($result)
{
while($row = mysqli_fetch_array($result))
{
$name = $row["$yourfield"];
echo "Name: " . $name;
}
}
*/
?>
</body>
</html>
有问题的行是脚本类型=&#34; text / javascript&#34; src =&#34; show.js&#34;&gt;,由于某种原因,它返回未定义索引:q 的错误,而q是两个文件中的共享参数。 希望我的问题是可以理解的,欣赏它。
答案 0 :(得分:0)
首先,show.js不应包含任何HTML!它应该是普通的javascript文件。
你在一开始打开什么文件?我想它应该是testmysql.php。但是在第一页加载时,当没有调用ajax时,当没有人调用js函数showUser时,页面加载没有参数。这就是为什么你得到$ _GET [&#39; q&#39;]是空的(未定义索引q)。试试
if (isset($_GET['q'])) {
....
} else {
do nothing
}
答案 1 :(得分:0)
喜欢 Wax 说:
首先,从JS文件中删除无用的html标记,您的脚本必须是:
function showUser(str) {
[...]
}
将此文件包含在.php文件中:
<script type="text/javascript" src="show.js"></script>
通过
从 show.js 调用您的函数<script type="text/javascript">showUser("your_str");</script>
最后,看看w3schools' chapter,了解如何在PHP中处理POST / GET请求
不要犹豫,看看网上提供的许多例子!