以下两行 javascript 代码导致 Uncaught SyntaxError:
var testObj = JSON.parse('{ testFunc: function () { console.log("whoa there"); }}');
testObj["testFunc"]();
我不明白我的 json 字符串有什么无效之处。
以下两行 javascript 代码导致 Uncaught SyntaxError:
var testObj = JSON.parse('{ testFunc: function () { console.log("whoa there"); }}');
testObj["testFunc"]();
我不明白我的 json 字符串有什么无效之处。