使用 RESTful api,当我在浏览器中访问 96.126.111.211/getLeaderBoard
它工作正常,并为我提供了我的 mongo 数据库中的 JSON 数据。
虽然当我尝试像这样http://jsfiddle.net/yVQ5T/的 jquery ajax 请求时,我得到一个 jsonp 错误
错误:未调用 jQuery171037622810900211334_1363808084624
这是服务器端的代码
getLeaderBoard(req, res)
{
this.db.collection(this.settings.userTable, function(err, collection) => {
collection.find().toArray(function(err, items) {
res.writeHead(200, {'Content-Type': 'application/javascript'});
res.write(JSON.stringify(items));
res.end();
});
});
}