I am making an ajax request with jquery and Php like this:
// arquivo php
$json = array(
"status"=>"true",
"message"=>"inserido com sucesso"
);
echo json_encode($json);
.
// arquivo js
$.ajax({
url, url,
type: "post",
data: dados,
success: function(json){
console.log(json);
},
error: function(){
msg.text("Erro ao fazer requisição");
}
});
My console.log
returns {"status":"true","message":"inserido com sucesso"}
and wanted to be transformed into a Java Script array, how could I do this conversion?