使用angular的$ http保存数据

时间:2014-02-19 21:31:01

标签: angularjs

我目前正在使用“No'Access-Control-Allow-Origin'标头存在”并且当我尝试执行此操作时找不到404。当我将方法作为GET时,它可以正常工作。 API使用mockable.io进行模拟。标题是我必须通过mockable.io配置的还是我只是使用了角度错误?

 var saveConfigs = function(){

  console.log("saving configurations...");

  $http({
    method: 'PUT',
    url: "http://demo9946042.mockable.io/lineGraphSample",
    data: $scope.theData,
    headers:{
      'Access-Control-Allow-Origin': '*',
      'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
    }
  })
  .success(function(){
      console.log("saving to server successful!");
   })
  .error(function(){
      console.log("failed to save");
  });

};

0 个答案:

没有答案