使用json和ajax从数据库中提取信息

bgibtngc  于 2021-06-23  发布在  Mysql
关注(0)|答案(1)|浏览(274)

我正在尝试使用javascript、ajax、php和json制作一个简单的“搜索”框。对于这个项目,我只使用从mqsql网站下载的数据库“world”。我试图从数据库中提取信息时遇到问题。它只需要第一行信息,然后我就得到了这个错误:“script5007:script5007:无法获取未定义或空引用ajaj.js(65,3)的属性'contrante'”
提前谢谢你能给我的任何帮助!
以下是我的ajaj.js代码:

var ajaxRequest=new XMLHttpRequest();
var input;
var button;

function init(){
    input = document.getElementById('search');
    input.addEventListener("keyup", sendRequest, false);
    button = document.getElementById('sendButton');
    button.addEventListener("click", sendSecondRequest, false);
}

function sendRequest(){
    ajaxRequest.onreadystatechange = getRequest;

    var searchTxt = "country=" + input.value;

    ajaxRequest.open("GET", "getCountries.php?" + searchTxt, true);
    ajaxRequest.send();
}

function getRequest(){
    if (ajaxRequest.readyState==4 && ajaxRequest.status==200){
        var jsonObj = JSON.parse(ajaxRequest.responseText);

        var dataList = document.getElementById('countries');

        dataList.innerHTML="";

        for(var i = 0; i<jsonObj.length; i++){

            var option = document.createElement('option');

            option.value = jsonObj[i]['Name'];

            dataList.appendChild(option);
        }
    }
}

function sendSecondRequest(){
    ajaxRequest.onreadystatechange = getSecondRequest;

    var infoCountry = "country=" + input.value;

    ajaxRequest.open("GET", "getCountries2.php?" + infoCountry, true);
    ajaxRequest.send();
}

function getSecondRequest(){
    if (ajaxRequest.readyState==4 && ajaxRequest.status==200){
        alert(ajaxRequest.responseText);
        var jsonObj2 = JSON.parse(ajaxRequest.responseText);

        document.getElementById("result").innerHTML = "LANDSKOD: " + jsonObj2[0]["Code"] + "<br>";
        document.getElementById("result2").innerHTML = "LANDSKOD: " + jsonObj2[2]["Continent"] + "<br>";
        document.getElementById("result3").innerHTML = "LANDSKOD: " + jsonObj2[7]["Population"] + "<br>";

    }
}

window.addEventListener("load",init,false);

问题就在这里,我只是不知道如何让它发挥作用:

document.getElementById("result").innerHTML = "LANDSKOD: " + jsonObj2[0]["Code"] + "<br>";
document.getElementById("result2").innerHTML = "LANDSKOD: " + jsonObj2[2]["Continent"] + "<br>";
document.getElementById("result3").innerHTML = "LANDSKOD: " + jsonObj2[7]["Population"] + "<br>";

我尝试了几种不同的解决方案,但都没能奏效,我尝试使用以下方法将代码组合成一行:

document.getElementById("result").innerHTML = "LANDSKOD: " + jsonObj2[0]["Code"] + "<br>" + "Continent: " + jsonObj2[2]["Continent] + "<br>";

但这似乎对我也不起作用。
我的其他代码:

index.html
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>AJAX</title>
    <script type="text/javascript" src="ajaj.js"></script>
</head>
<body>
<h1>Sök information om ett land</h1>

<input type="text" list="countries"  id = 'search' placeholder="Land">
<datalist id="countries">
</datalist>
<button type="button" id="sendButton">Hämta information</button>

<p id="result"></p>
<p id="result2"></p>
<p id="result3"></p>

</body>
</html>

获取国家/地区.php

<?php
include_once('db.inc.php');

$country = $_GET['country'];

// Kör frågan mot databasen world och tabellen country
$stmt = $db->prepare("SELECT * FROM country WHERE Name Like ? ORDER BY Name");
$stmt->execute(array("$country%"));

$tableRows = array();

// Lägger resultatet i vår array
$tableRows = $stmt->fetchAll(PDO::FETCH_ASSOC);

// Här konverteras och skickas resultatet i JSON-format
echo json_encode($tableRows);
?>

getcountries2.php文件

<?php
include_once('db.inc.php');

$country = $_GET['country'];

// Kör frågan mot databasen world och tabellen country
$stmt = $db->prepare("SELECT * FROM country WHERE Name Like ? ORDER BY Name");
$stmt->execute(array("$country"));

$tableRows = array();

// Lägger resultatet i vår array
$tableRows = $stmt->fetchAll(PDO::FETCH_ASSOC);

// Här konverteras och skickas resultatet i JSON-format
echo json_encode($tableRows);
?>

数据库公司

<?php

define ('DB_USER', 'root');
define ('DB_PASSWORD', 'Abc12345');
define ('DB_HOST', 'localhost');
define ('DB_NAME', 'world');

$dsn = 'mysql:host=' . DB_HOST . ';dbname=' . DB_NAME . ';charset=utf8';
$db = new PDO($dsn, DB_USER, DB_PASSWORD);
?>

编辑:我刚从评论中得到答案,信息是在同一行,没有区别,因此没有工作

jsonObj2[2]["Continent"]

但它确实起了作用

jsonObj2[0]["Continent"]

谢谢你@肖恩!

uqcuzwp8

uqcuzwp81#

这意味着jsonobj2[2]不是对象。在数据库返回数组中似乎没有3行(jsonobj2[2])。尝试

jsonObj2[0]["Code"] + jsonObj2[0]["Continent"] + sonObj2[0] 
["Population"]

它应该工作,但不知道为什么你的目标行0,2,7。

相关问题