我有以下的jQuery/JS代碼爲什麼parseJSON返回null
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script>
$.getJSON("http://example/topics", {}, function(data){
console.log(data); // display the JSON *data* in the web console
console.log($.parseJSON(data));
});
</script>
的console.log(數據)顯示Firebug的控制檯內JSON數據(Firefox插件),但的console.log($。 parseJSON(data))顯示null。
可能是什麼原因。
我需要將JSON字符串轉換爲數組。