簡體   English   中英

使用JSON和AJAX從數據庫中提取信息

[英]Extracting information from database using JSON and AJAX

我正在嘗試使用Javascript,AJAX,php和JSON創建一個簡單的“搜索”框。 對於這個項目,我只是使用從mqsql網站下載的數據庫“world”。 我在嘗試從數據庫中提取信息時遇到了問題。 它只需要第一行信息,然后我收到此錯誤:“SCRIPT5007:SCRIPT5007:無法獲取未定義或空引用的屬性'Continent'ajaj.js(65,3)”

在此先感謝您能給我的任何幫助!

這是我的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>

getCountries.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);
?>

db.inc.php

<?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"]

謝謝@sean!

這意味着jsonObj2 [2]不是對象。 看起來你在數據庫返回數組中沒有3行(jsonObj2 [2])。 嘗試

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

它應該工作但不知道為什么你的目標是行0,2,7。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM