Servidor JSON


Índice

    Mostrar índice


Um uso comum do JSON é trocar dados de/para um servidor web.

Ao receber dados de um servidor web, os dados são sempre uma string.

Analise os dados com JSON.parse() e os dados se tornarão um objeto JavaScript.


Envio de dados

Se você tiver dados armazenados em um objeto JavaScript, poderá converter o objeto em JSON e envie-o para um servidor:

Exemplo

 const myObj = {name: "John", 
  age: 31, city: "New York"};
const myJSON = 
  JSON.stringify(myObj);
window.location = "demo_json.php?x=" + myJSON;

Experimente você mesmo →

<!DOCTYPE html>
<html>
<body>

<h2>Convert a JavaScript object into a JSON string, and send it to the server.</h2>

<script>
const myObj = { name: "John", age: 31, city: "New York" };
const myJSON = JSON.stringify(myObj);
window.location = "demo_json.php?x=" + myJSON;
</script>

</body>
</html>

Recebendo dados

Se você receber dados no formato JSON, poderá convertê-los facilmente em JavaScript objeto:

Exemplo

 const myJSON =
  '{"name":"John", 
  "age":31, "city":"New York"}';
const myObj = 
  JSON.parse(myJSON);
document.getElementById("demo").innerHTML = myObj.name;

Experimente você mesmo →

<!DOCTYPE html>
<html>
<body>

<h2>Convert a JSON string into a JavaScript object.</h2>

<p id="demo"></p>

<script>
const myJSON = '{"name":"John", "age":31, "city":"New York"}';
const myObj = JSON.parse(myJSON);
document.getElementById("demo").innerHTML = myObj.name;
</script>

</body>
</html>

JSON de um servidor

Você pode solicitar JSON do servidor usando uma solicitação AJAX

Contanto que a resposta do servidor seja escrita no formato JSON, você pode analise a string em um objeto JavaScript.

Exemplo

Use o XMLHttpRequest para obter dados do servidor:

const xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
  const myObj = JSON.parse(this.responseText);
  document.getElementById("demo").innerHTML = myObj.name;
};
xmlhttp.open("GET", "json_demo.txt");
xmlhttp.send();

Experimente você mesmo →

<!DOCTYPE html>
<html>
<body>

<h2>Fetch a JSON file with XMLHttpRequest</h2>
<p id="demo"></p>

<script>
const xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
  const myObj = JSON.parse(this.responseText);
  document.getElementById("demo").innerHTML = myObj.name;
}
xmlhttp.open("GET", "json_demo.txt");
xmlhttp.send();
</script>

</body>
</html>

Dê uma olhada em json_demo.txt: https://basicit.org/js/json_demo.txt



Matriz como JSON

Ao usar o JSON.parse() em JSON derivado de um array, o método irá retornar um array JavaScript, em vez de um objeto JavaScript.

Exemplo

JSON retornado de um servidor como um array:

const xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
  const myArr = JSON.parse(this.responseText);
  document.getElementById("demo").innerHTML = myArr[0];
  }
}
xmlhttp.open("GET", "json_demo_array.txt", true);
xmlhttp.send();

Experimente você mesmo →

<!DOCTYPE html>
<html>
<body>

<h2>Fetch a JSON file with XMLHttpRequest</h2>
<p>Content written as an JSON array will be converted into a JavaScript array.</p>
<p id="demo"></p>

<script>
const xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
  const myArr = JSON.parse(this.responseText);
  document.getElementById("demo").innerHTML = myArr[0];
}
xmlhttp.open("GET", "json_demo_array.txt", true);
xmlhttp.send();
</script>

</body>
</html>

Dê uma olhada em json_demo_array.txt: https://basicit.org/js/json_demo_array.txt