> node
> j = '{a:1,b:"2"}';
> JSON.parse(j)
SyntaxError: Unexpected token a
at Object.parse (native)
at repl:1:6
at REPLServer.defaultEval (repl.js:252:27)
at bound (domain.js:287:14)
at REPLServer.runBound [as eval] (domain.js:300:12)
at REPLServer.<anonymous> (repl.js:417:12)
at emitOne (events.js:82:20)
at REPLServer.emit (events.js:169:7)
at REPLServer.Interface._onLine (readline.js:210:10)
at REPLServer.Interface._line (readline.js:549:8)
示例中的j不是标准的JSON字符串,键值都得带上引号。
使用eval
try{
var json = JSON.parse(j);
} catch(e) {
var json = eval("("+ j +")");
}