PHP JSON kullanıyorum, ve şimdi ben JavaScript'den erişmek gerekir. Nasıl JavaScript JSON nesnesi geçirmek?
<?php
$array = array("a"=>"Caucho", "b"=>"Resin", "c"=>"Quercus");
$json = json_encode($array);
>
My.js sahip olduğu:
showAll(){
alert("Show All Json Objects");
// How do I get the JSON value here?
}
Ben bunu nasıl yapabilirim?