tutoriais mais recente desenvolvimento web
 

Edifício Web - Dados como Serviço (DaaS)


Construindo um web site a partir do zero Parte VIII:. Dados como um serviço.


O que nos faremos

Neste capítulo, iremos:

  • Buscar dados dinâmicos de um SQL servidor web

Usando um PHP Servidor Executando o MySQL

Na pasta demoweb, altere o customers.html arquivo.

Coloque o seguinte código dentro do arquivo:

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>
Tente você mesmo "

O código de cima é o mesmo que no capítulo JSON.

Só que desta vez o XMLHttpRequest lê os dados do "customers_db_mysql.php".

customers_db_mysql.php obtém dados a partir de um banco de dados "ao vivo", enquanto customers.php busca um arquivo de texto "estático".


Usando um ASP.NET Servidor executando o SQL Server

Na pasta demoweb, altere o customers.html arquivo.

Coloque o seguinte código dentro do arquivo:

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>
Tente você mesmo "

O código de cima é o mesmo que o anterior.

Só que desta vez o XMLHttpRequest lê os dados do "customers_db_sql.aspx".


Leia mais

Leia mais sobre SQL no nosso Tutorial SQL .