JSON.parse()意外的令牌错误

尝试解析此JSON字符串时,我收到意外的令牌错误
$scope.Feeds = JSON.parse('[{"id":"212216417436_10152811286407437","from":{ "category":"Movie","name":"The Lord of the Rings Trilogy","id":"212216417436"},"story":"The Lord of the Rings Trilogy shared The Hobbit\'s photo.","picture":"https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-xaf1/v/t1.0-9/s130x130/1912397_736719376363670_7288336626443028501_n.jpg?oh=a7e83093f61fafa7909ff84263f989e4&oe=54B4481D&__gda__=1420472696_dbd6462629a00e218c849c5ed7b49c44","link":"https://www.facebook.com/TheHobbitMovie/photos/a.291674244201521.63650.160617097307237/736719376363670/?type=1","name":"Timeline Photos","caption":"\"I have the only right.\" \n\nWhat is your favorite Thorin quote from #TheHobbit?","properties":[  {  "name":"By","text":"The Hobbit","href":"https://www.facebook.com/TheHobbitMovie?ref=stream"}],"icon":"https://fbstatic-a.akamaihd.net/rsrc.PHP/v2/yD/r/aS8ecmYRys0.gif","actions":[  { "name":"Comment","link":"https://www.facebook.com/212216417436/posts/10152811286407437"},{ "name":"Like","link":"https://www.facebook.com/212216417436/posts/10152811286407437"}],"privacy":{ "value":""},"type":"photo","status_type":"shared_story","object_id":"736719376363670","application":{ "name":"Photos","id":"2305272732"},"created_time":"2014-10-12T21:35:41+0000","updated_time":"2014-10-12T21:37:17+0000"},{  "id":"21785951839_10152794856921840","from":{ "category":"App page","name":"9GAG","id":"21785951839"},"message":"Must NOT let my girlfriend see this!\nhttp://9gag.tv/p/a9OrlY?ref=fbl9\n\nWatch more awesome videos on your phone:\nAndroid ► http://goo.gl/Rbi9FP\niPhone/iPad ► http://goo.gl/NFMm9p","picture":"https://fbexternal-a.akamaihd.net/safe_image.PHP?d=AQCee84KqIBIdnIX&w=158&h=158&url=http%3A%2F%2Fd1d4324mp0stc8.cloudfront.net%2Fmedia%2Fphoto%2FpPgXmO5QJ_600w_v1.jpg","link":"http://9gag.tv/p/a9OrlY?ref=fbl9","name":"This \"Marry Me\" Lip-Sync Proposal Is So Touching And Amazing | 9GAG.tv","caption":"9gag.tv","description":"This sets the bar pretty high!","link":"https://www.facebook.com/21785951839/posts/10152794856921840"},"link":"https://www.facebook.com/21785951839/posts/10152794856921840"}],"type":"link","created_time":"2014-10-12T21:15:00+0000","updated_time":"2014-10-12T21:15:46+0000","shares":{  "count":160}}]');

扩展的字符串对象:

{
   "id":"212216417436_10152811286407437","from":{
      "category":"Movie","id":"212216417436"
   },"properties":[
      {
         "name":"By","href":"https://www.facebook.com/TheHobbitMovie?ref=stream"
      }
   ],"actions":[
      {
         "name":"Comment","link":"https://www.facebook.com/212216417436/posts/10152811286407437"
      },{
         "name":"Like","link":"https://www.facebook.com/212216417436/posts/10152811286407437"
      }
   ],"privacy":{
      "value":""
   },"application":{
      "name":"Photos","id":"2305272732"
   },"updated_time":"2014-10-12T21:37:17+0000"
},{
   "id":"21785951839_10152794856921840","from":{
      "category":"App page","id":"21785951839"
   },"link":"https://www.facebook.com/21785951839/posts/10152794856921840"
      },"link":"https://www.facebook.com/21785951839/posts/10152794856921840"
      }
   ],"shares":{
      "count":160
   }
}
验证你的json字符串.如果可以的话试试这个:
var jsonStr="your json string";
var json=JSON.stringify(jsonStr);
json=JSON.parse(json)

相关文章

AJAX是一种基于JavaScript和XML的技术,能够使网页实现异步交...
在网页开发中,我们常常需要通过Ajax从后端获取数据并在页面...
在前端开发中,经常需要循环JSON对象数组进行数据操作。使用...
AJAX(Asynchronous JavaScript and XML)是一种用于创建 We...
AJAX技术被广泛应用于现代Web开发,它可以在无需重新加载页面...
Ajax是一种通过JavaScript和HTTP请求交互的技术,可以实现无...