我已经获得了从服务器到浏览器的响应 json 数据,但是很困惑,数据无法在浏览器中显示,我在控制台中发现了错误,告诉我“未捕获的语法错误:意外的令牌:”。这是我在节点 js 中的代码。
function callFacebook(){
$.ajax({
url: "http://192.168.37.179:8888/facebook/connect?callback_=[TIMESTAMP]",
type: "GET",
dataType: "jsonp",
jsonp:"jsonp",
cache: true,
timeout: 5000,
success: function(data) {
execute(data);
},
error:function() { console.log('Uh Oh!'); }
});
这里是响应 json 数据:
res.header('Content-Type','application/json');
res.header('Charset','utf-8');
res.send({"something": "father"});