Num app html +js + json fica assim...
// conecta ao servidor
var xmlhttp = new XMLHttpRequest();
var url = "http://apptanamaobr.16mb.com/teste/wsindex.php";
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
ConectaServidor(xmlhttp.responseText);
}
}
xmlhttp.open("GET", url, true);
xmlhttp.send();
function ConectaServidor(response) {
var dados = JSON.parse(response); //faz a conversão do texto da WEB para JSON
var i;
var conteudo = "";
for(i = 0; i < dados.length; i++) //dados.length retorna o tamanho do vetor.
{
conteudo += "<a href=listing.html?" + dados[i].id + " style='width: 150px' class=' btn btn-outline-primary' role='button' aria-pressed='true'>" +
"<h5>" + dados[i].FirstName + "</h5></a><br><br>" ;
}
document.getElementById("conteudoJSON").innerHTML = conteudo;
}
como faço isso no ionic?