我正在尝试使用 MongoDB 的简单 API 和 JSONP 在服务器上本地执行来自客户端的查询。我的 Javascript 函数如下所示:
var url = "http://127.0.0.1:28017/test/firstImport/";
$.ajax({url: url,
type: 'GET',
dataType: 'jsonp',
cache: false,
jsonp: 'jsonp',
crossDomain: 'true',
success: function(data){
console.log("success") ;
}});
我还将网址更改为:
url = "http://127.0.0.1:28017/test/firstImport?callback=?"
与失败的 GET 相同的结果:
GET http://127.0.0.1:28017/test/firstImport/?callback=jQuery172028897865186445415_1382730114314&_=1382730123431
我一直在研究这个,但到目前为止还没有想出任何东西。任何帮助将不胜感激!