我正在构建一个 AngularJS 应用程序,它调用从数据库获取数据的 NodeJS 服务器。NodeJS 返回一个 JSON.stringify(someArrayWithData)。
这是 AngularJS 代码:
$scope.getMainGroups = function(){
$http.jsonp("http://127.0.0.1:3000/get/MainGroups?callback=JSON_CALLBACK").success(function(data, status, headers, config) {
$scope.MainGroups = data;
}).error(function(data, status, headers, config) {
$scope.MainGroups = status;
});
};
$scope.MainGroups 将转到 .error 而不是成功,即使我可以在 chrome 调试器中看到结果返回(200 ok)。
我错过了什么?