简体   繁体   中英

SyntaxError: JSON.parse: unexpected character

I'm having a problem. I have a json code as below. I want to parse them but get an error: SyntaxError: JSON.parse: unexpected character I don't know where is the error. Would anyone help?

My js code:

  function retreive() {
  var userInfo = new Array();
  userInfo[0] = $("#contactId").val();
  userInfo[1] = $("#pw").val();
  var cId = $.ajax({ 
    url: "server.php", 
    type: "POST", 
data: {phpData : userInfo}, 
    datatype: "json",
success:function(msg) {
    responseJson = JSON.parse(msg.responseText);
var outputHtml = "";
    for (var i=0; i<responseJSON.user.mary.length; i++) {
outputHtml += responseJSON.user.mary[i].sender[i].sendDate + 
", " + responseJSON.user.mary[i].sender[i].time + 
", " + responseJSON.user.mary[i].sender[i].timezone + 
", " + responseJSON.user.mary[i].sender[i].message + "<br/>"}
divMessage = document.getElementById("message");
    divMessage.innerHTML = outputHtml;
}
});   

}

my php code:

    $data = '{
  "user" : 
    [
      {
    "mary" :
      [
        {
          "sender1" :
        [
              {
                "sendDate"     : "2012-01-13",
                "time"     : "15:00:21",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "hi"
          },
          {
                "sendDate"     : "2012-01-18",
                "time"     : "16:00:01",
                "timezone" : "Asia/Hong_Kong",
            "message"  : "how are you"
              },
              {
                "sendDate"     : "2012-01-21",
                "time"     : "14:31:42",
                "timezone" : "Asia/Hong_Kong",
            "message"  : "good"
          }  
        ],
          "sender2" :
        [
          {
                "sendDate"     : "2012-01-14",
                "time"     : "09:01:25",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "good morning"
          },
              {
                "sendDate"     : "2012-01-14",
                "time"     : "09:03:41",
            "timezone" : "Asia/Hong_Kong",
                "message"  : "where are you"
          },
          {
                "sendDate"     : "2012-01-14",
                "time"     : "09:05:42",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "me too"
          }
            ],
        }  
      ],    
    "peter" :
      [
        {
          "sender1" :
            [         
              {
                "sendDate"     : "2012-01-13",
                "time"     : "10:44:28",
            "timezone" : "Asia/Hong_Kong",
                "message"  : "hey man"
          },
          {
                "sendDate"     : "2012-01-13",
                "time"     : "10:46:11",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "what are you doing"
              },
              {
                "sendDate"     : "2012-01-13",
                "time"     : "10:48:33",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "nice"
          }
        ],
          "sender3" :
            [
              {
                "sendDate"     : "2012-01-18",
                "time"     : "14:23:58",
            "timezone" : "Asia/Hong_Kong",
                "message"  : "Had you send the file to me"
              },
          {
                "sendDate"     : "2012-01-18",
                "time"     : "15:01:39",
            "timezone" : "Asia/Hong_Kong",
                "message"  : "i have not receive yet"
          },
              {
                "sendDate"     : "2012-01-19",
                "time"     : "09:08:32",
                "timezone" : "Asia/Hong_Kong",
                "message"  : "received"
          },
        ],  
        }
      ],
      }
    ],
}';
echo $data;

Well, like the error says, your JSON is invalid.

http://jsonlint.com/

Constructing JSON manually is a really bad idea. It's far harder to construct, and you're prone to parse errors. Instead, build your data programmatically as an array or object then use json_encode() .

JSON Lint is your friend, use it to find potential errors in your json.

Parse error on line 45:
...                   }            ],   
----------------------^
Expecting 'STRING'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM