-2
JSON.parse("{list : []}");
產生這在控制檯:
VM9793:1 Uncaught SyntaxError: Unexpected token l in JSON at position 1
at JSON.parse (<anonymous>)
at <anonymous>:1:6
JSON.parse("{list : []}");
產生這在控制檯:
VM9793:1 Uncaught SyntaxError: Unexpected token l in JSON at position 1
at JSON.parse (<anonymous>)
at <anonymous>:1:6
我的問題是當我嘗試JSON.parse(「{'list':[]}」); (在外面用雙引號),它不起作用,所以我認爲別的東西是錯的。雙引號需要放在裏面嗎? –
@jKo這是因爲在JSON字符串中必須使用雙引號,它不需要單引號。 –
這裏有問題,或者只是一個錯誤的JSON字符串正確地引發錯誤的聲明? – Ryan