I'm attempting to retrieve and load a series of waypoints from a mysql database onto a map using ajax, javascript and php. The route is stored in the database using a JSON string.
This is the javascript function that is called (the parameter is the id of the route to be loaded, as there are many routes in the database):
function fetchdata(id) {
var routeID = id;
var jax = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
jax.open('POST','process.php');
jax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
jax.send('command=fetch&rid='+routeID);
jax.onreadystatechange = function(){
if(jax.readyState==4) {
try {
setroute(JSON.parse(jax.responseText));
}
catch(e){
alert(e);
}
}
}
The php file it calls contains this if statement to seperate save and fetch commands:
//Retrieving the route from the database.
if($_REQUEST['command']=='fetch') {
$query = "SELECT * FROM Route WHERE route_id='$id'";
if(!($res = mysql_query($query))) {
die(mysql_error());
}
else {
$rs = mysql_fetch_array($res,1);
die($rs['waypoints']);
}
}
The problem that I'm having is that when the value is passed back to ajax/javascript it is just reporting an "Object Error" and is not being parsed by the JSON.parse() method. I'm not if I'm passing the wrong type of object back to ajax, but I have tried converting it to a strong also.
Any help on solving this would be greatly appreciated!
Thanks
console.log(JSON.parse('yourJSONstring');in firebug and I ran into encoding issues that meant it would not parse. The problem was that JSON.parse was seeing0000000‌​1,"lng":where it should see00000001,"lng":. If that's happening at your end, there's your problem. MySQL is returning text that has borked the character encoding somewhere along the line. – fred2 Mar 10 '12 at 18:49