Javascript 为什么我无法将此json转换为字符串?

Javascript 为什么我无法将此json转换为字符串?,javascript,Javascript,我有json数据,我很难将其转换为字符串。如何格式化它,使其成为字符串 jsfiddle: 代码: Jsonvar={“shows”:[{“show_id”:6387,“shownum”:6387,“title”:“新教徒的困境”,“guest”:“Devin Rose”,“category”:“非天主教”,“url”:http://www.catholic.com/radio/shows/the-protestants-dilemma-11565,“audiourl”:http://www.c

我有json数据,我很难将其转换为字符串。如何格式化它,使其成为字符串

jsfiddle:

代码:

Jsonvar={“shows”:[{“show_id”:6387,“shownum”:6387,“title”:“新教徒的困境”,“guest”:“Devin Rose”,“category”:“非天主教”,“url”:http://www.catholic.com/radio/shows/the-protestants-dilemma-11565,“audiourl”:http://www.catholic.com/sites /默认值/files/audio/radioshows/ca140331b.mp3,“datetime”:“1396317600”,“description”:”
Devin Rose,“拇指指甲小”:http://www.catholic.com/sites/default/files/imagecache/profile_square_small/images/profilepics/a109aad8daa70ad8976ffc.L._V387899120_SX200_.jpg,“thumbnaillarge”:http://www.catholic.com/sites/default/files/imagecache/profile_square_large/images/profilepics  /a109aad8daa70ad8976ffc.L.V38789120_SX200_U200.jpg“};
var jsonstr=JSON.stringify(Jsonvar);
警报(jsonstr);

控制台中的此错误解释了这一点:
Uncaught SyntaxError:意外令牌非法

对象中有一个换行符:

Jsonvar = {"shows":[{"show_id":6387, "shownum":6387,"title":"The Protestant's     Dilemma","guest":"Devin Rose","category":"Non-
Catholic","url":"http://www.catholic.com/radio/shows/the-protestants-dilemma-
11565","audiourl":"http://www.catholic.com/sites/default/files/audio/radioshows/ca140331b.mp3"
,"datetime":"1396317600","description":" <<<- Here
Devin Rose
Jsonvar={“shows”:[{“show_id”:6387,“shownum”:6387,“title”:“新教徒的困境”,“guest”:“Devin Rose”,“category”:“Non”-
天主教“,”网址“:”http://www.catholic.com/radio/shows/the-protestants-dilemma-
11565,“音频URL”:http://www.catholic.com/sites/default/files/audio/radioshows/ca140331b.mp3"
,“日期时间”:“1396317600”,“说明”:“

首先,使用jsonlint验证json。
然后再试。

@PranavSingh您已经用您的edit@Andreas,我只是格式化了json以便更好地理解,如果它删除了错误,那就很抱歉了。哦,对不起,投票失败了,问题中的代码有效,但在JSFIDLE中没有。
Jsonvar = {"shows":[{"show_id":6387, "shownum":6387,"title":"The Protestant's     Dilemma","guest":"Devin Rose","category":"Non-
Catholic","url":"http://www.catholic.com/radio/shows/the-protestants-dilemma-
11565","audiourl":"http://www.catholic.com/sites/default/files/audio/radioshows/ca140331b.mp3"
,"datetime":"1396317600","description":" <<<- Here
Devin Rose