我在服务器端传递有效的 JSON(使用 node.js),但无法在客户端解析(使用 jQuery)。jQuery.parseJSON
返回null
。任何帮助将不胜感激。
服务器端-
var message = [{key:"1", count:1},{key:"2", count:2}];
client.publish('update', JSON.stringify(message));
客户端 -
socket.on("update", function(data) {
var obj = jQuery.parseJSON(data);
alert (obj); // returns null
// do something
}