我正在使用 Request Bin 发布一些数据。在我的控制器中,我有以下代码:
$http.post('http://requestb.in/redacted', fooBar).
success(function(data) {
$scope.fooBarPostedSuccess = true;
}).
error(function(err) {
console.log("Error while posting to Request Bin");
console.log("Error Info : " + err);
});
这是通过 UI 上的按钮触发的。现在,当它被触发时,数据不会发布到请求箱,我收到这个错误:
XMLHttpRequest cannot load http://requestb.in/redacted.
Origin http://localhost:3000 is not allowed by Access-Control-Allow-Origin.
如何通过 AngularJS 控制器发布数据以请求 bin?另外,上面的错误是什么意思?
编辑:我想在这里补充一下,我正在使用带有 AngularJS 的 Node.js。这可能与Node有关吗?