我正在使用这本书来学习 AngularJS,我在其中使用 Angular、Node、Deployd 构建了这个 webapp。现在,我的应用程序停留在 localhost:5000/app.html,5000 是节点 Web 服务器监听的端口。我尝试检索以这种方式部署的存储数据:
$http.get("localhost:5500/products")
.success(function (data) {
$scope.data.products = data;
})
.error(function (error) {
$scope.data.error = error;
});
但这会导致错误:请求的资源上不存在“Access-Control-Allow-Origin”标头。我该如何解决这个问题?谢谢 :)