Json returns every character as a separate object?

admin

Administrator
Staff member
I have a json object that I'm loading from wordpress using the JSON API plugin. When I load the json object and try to log out the parts of it, it seems like it treats every single character as its own object so the loop returns me a couple thousand objects all with item in it which is a single character. This is my first time using json so idk if i'm missing a step here. this is the code I'm using so far.

Code:
function getProjInfo(theId){ 
    $.ajax({// calling the ajax object of jquery
        type: "GET",// we are going to be getting info from this data source
        url: 'http://testing.charter21.com/api/get_post/?post_id='+ theId,//the datasource
        dataType: "application/json",
        success: function(data){
        parseJson(data);
    }, // what happens when it is successful at loading the XML 
    error: function(){
        alert("error");
    }   
    });

}//end of the function

function parseJson(inData){
    postInfo = inData;
    $.each(postInfo, function(index, value){
    console.log(this);
});

}

the json looks like this:<br>
Code:
{
<br>
Code:
"status": "ok",
<br>
Code:
"count": 10,
<br>
Code:
"count_total": 19,
<br>
Code:
"pages": 2,
<br>
Code:
"posts": [
<br>
Code:
{
<br>
Code:
"id": 175,
<br>
Code:
"type": "post",
<br>
Code:
"slug": "home-page-slider",
<br>
Code:
"url": "http:\/\/testing.charter21.com\/uncategorized\/home-page-slider\/",
<br>
Code:
"status": "publish",
<br>
Code:
"title": "Home Page slider",
<br>
Code:
"title_plain": "Home Page slider",
<br>
Code:
"content": "&lt;p&gt;The cImages in here are the images that are in the slider on the home page this content in this box will not show up. Its only here as a guide.&lt;\/p&gt;\n",
<br>
Code:
"excerpt": "The cImages in here are the images that are in the slider on the home page this content in this box will not show up. Its only here as a guide.",
<br>
Code:
"date": "2011-01-25 10:40:25",
<br>
Code:
"modified": "2011-01-25 10:40:25",
<br>
Code:
"categories": [],
<br>
Code:
"tags": [],
<br>
Code:
"author": {
<br>
Code:
"id": 1,
<br>
Code:
"slug": "admin",
<br>
Code:
"name": "admin",
<br>
Code:
"first_name": "",
<br>
Code:
"last_name": "",
<br>
Code:
"nickname": "admin",
<br>
Code:
"url": "",
<br>
Code:
"description": ""
<br>
Code:
},
<br>
Code:
"comments": [],
<br>
Code:
"attachments": [],
<br>
Code:
"comment_count": 0,
<br>
Code:
"comment_status": "open"
<br>
Code:
}

so basically instead of giving me "status" as an key and "ok" as a value, i get "s" as an object with an index 0 that has a value of "s" for every single character in the json object. Any help on this matter would be appreciated.