最新のWeb開発のチュートリアル
 

ウェブビルディング - サービスとしてのデータ(DAAS)


ゼロからWebサイトを構築パートVIII:サービスとしてのデータを。


私たちは何をしますか

この章では以下となります。

  • SQLを実行しているWebサーバから動的なデータを取得します

MySQLを実行しているPHPサーバーの使用

demowebフォルダで、ファイルcustomers.htmlを変更します。

ファイル内に次のコードを追加します。

customers.html

<!DOCTYPE html>
<html>

<head>
  <title>Customers</title>
  <link href="site.css" rel="stylesheet">
</head>

<body>

<nav id="nav01"></nav>

<div id="main">
  <h1>Customers</h1>
  <div id="id01"></div>
  <footer id="foot01"></footer>
</div>

<script src="script.js"></script>

<script>
var xmlhttp = new XMLHttpRequest();
var url = "http://www.w3ii.com/website/customers_db_mysql.php";

xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        myFunction(xmlhttp.responseText);
    }
}
xmlhttp.open("GET", url, true);
xmlhttp.send();

function myFunction(response) {
    var obj = JSON.parse(response);
    var arr = obj.records;
    var i;
    var out = "<table><tr><th>Name</th><th>City</th><th>Country</th></tr>";
    for(i = 0; i < arr.length; i++) {
        out += "<tr><td>" +
        arr[i].Name +
        "</td><td>" +
        arr[i].City +
        "</td><td>" +
        arr[i].Country +
        "</td></tr>";
    }
    out += "</table>"
    document.getElementById("id01").innerHTML = out;
}
</script>

</body>
</html>
»それを自分で試してみてください

上記のコードは、JSONの章と同じです。

今回だけは、XMLHttpRequestが「customers_db_mysql.php」からデータを読み出します。

customers.phpは「静的」テキストフ​​ァイルを取り込みながらcustomers_db_mysql.phpは、 "ライブ"データベースからデータをフェッチします。


SQL Serverを実行しているASP.NETサーバーの使用

demowebフォルダで、ファイルcustomers.htmlを変更します。

ファイル内に次のコードを追加します。

customers.html

<!DOCTYPE html>
<html>

<head>
  <title>Customers</title>
  <link href="site.css" rel="stylesheet">
</head>

<body>

<nav id="nav01"></nav>

<div id="main">
  <h1>Customers</h1>
  <div id="id01"></div>
  <footer id="foot01"></footer>
</div>

<script src="script.js"></script>

<script>
var xmlhttp = new XMLHttpRequest();
var url = "http://www.w3ii.com/website/customers_db_sql.aspx";

xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        myFunction(xmlhttp.responseText);
    }
}
xmlhttp.open("GET", url, true);
xmlhttp.send();

function myFunction(response) {
    var obj = JSON.parse(response);
    var arr = obj.records;
    var i;
    var out = "<table><tr><th>Name</th><th>City</th><th>Country</th></tr>";
    for(i = 0; i < arr.length; i++) {
        out += "<tr><td>" +
        arr[i].Name +
        "</td><td>" +
        arr[i].City +
        "</td><td>" +
        arr[i].Country +
        "</td></tr>";
    }
    out += "</table>"
    document.getElementById("id01").innerHTML = out;
}
</script>

</body>
</html>
»それを自分で試してみてください

上記のコードは、前のものと同じです。

今回だけは、XMLHttpRequestが「customers_db_sql.aspx」からデータを読み出します。


続きを読む

私たちの中にSQLについてもっと読むSQLチュートリアルを