1
以下數據從MongoDB的錯誤而解析JSON的NodeJS
console.log(x)
檢索到的輸出
{ _id: 54473495721e8a7386959897,
tag: 'java',
data:
[
{ view: '2342343', date: '2001/1/25' }
]
}
在使用JSON.parse
var dataJson = JSON.parse(x);
它thwors下面的錯誤解析
undefined:1
{ _id: 54473495721e8a7386959897,
^
SyntaxError: Unexpected token _
at Object.parse (native)
看起來'x'已經是一個對象。不需要'JSON.parse' – Bulkan 2014-10-27 04:48:08