最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Escaping character in json string - Stack Overflow

programmeradmin1浏览0评论

It is said here:

any quotes inside the JSON have to be “escaped” with a backslash in front. Otherwise, JavaScript gets confused about which quotes we want for display and which quotes are part of the programming.

but in their code snippet I can't see any escaping character is this tutorial buggy I'm confused ? :

var movielisttext = "{"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]}";

My question is specifically if their article has an error or not because it amazes me that a tutorial for beginner can embed such error.

It is said here:

any quotes inside the JSON have to be “escaped” with a backslash in front. Otherwise, JavaScript gets confused about which quotes we want for display and which quotes are part of the programming.

but in their code snippet I can't see any escaping character is this tutorial buggy I'm confused ? :

var movielisttext = "{"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]}";

My question is specifically if their article has an error or not because it amazes me that a tutorial for beginner can embed such error.

Share Improve this question edited Nov 6, 2010 at 18:13 user310291 asked Nov 6, 2010 at 16:27 user310291user310291 38.3k89 gold badges295 silver badges519 bronze badges 1
  • stackoverflow./questions/2275359/… – Luca Filosofi Commented Nov 6, 2010 at 16:48
Add a ment  | 

4 Answers 4

Reset to default 4

What you have is JavaScript, not JSON.

If you want JSON:

{
    "movielist": [
        "Friday the 13th",
        "Friday the 13th Part 2",
        "Friday the 13th Part III",
        "Friday the 13th: The Final Chapter",
        "Friday the 13th: A New Beginning"
    ]
}

If you want a JavaScript object

var movielisttext =   {
        "movielist": [
            "Friday the 13th",
            "Friday the 13th Part 2",
            "Friday the 13th Part III",
            "Friday the 13th: The Final Chapter",
            "Friday the 13th: A New Beginning"
        ]
    };

If you want a JavaScript string containing the JSON:

var movielisttext =  '{"movielist": ["Friday the 13th","Friday the 13th Part 2","Friday the 13th Part III","Friday the 13th: The Final Chapter","Friday the 13th: A New Beginning"]}';

or

var movielisttext = "{\"movielist\": [\"Friday the 13th\",\"Friday the 13th Part 2\",\"Friday the 13th Part III\",\"Friday the 13th: The Final Chapter\",\"Friday the 13th: A New Beginning\"]}";

Since the data itself doesn't include any " characters, they don't need to be escaped as far as the JSON is concerned.

Since this is JavaScript and not JSON, just omit the surrounding quotes:

var movielisttext = {"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]};

Strings in JSON must always be wrapped in double quotes. In that example they should have formatted the JSON like this:

var movielisttext = '{"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]}';

But if their intention was to create a literal Javascript object, they should have used:

var movielisttext = {"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]};

In the first case, the value of movielisttext is a string, in the second case it's an object

var movielisttext = '{"movielist": ["Friday the 13th", "Friday the 13th Part 2", "Friday the 13th Part III", "Friday the 13th: The Final Chapter", "Friday the 13th: A New Beginning"]}';

OR

var movielisttext = "{\"movielist\": [\"Friday the 13th\", \"Friday the 13th Part 2\", \"Friday the 13th Part III\", \"Friday the 13th: The Final Chapter\", \"Friday the 13th: A New Beginning\"]}";

Would do the trick.

发布评论

评论列表(0)

  1. 暂无评论