ionic请求php,Ionic + Angular POST请求返回状态404

我刚刚更新了Angular + Ionic的新版本,并且处理远程请求的方法停止工作并始终返回404响应。

请求如下:

Request Method:POST

Status Code:404 Not Found (from cache)

Request Headersview source

Accept:application/json, text/plain, */*

Content-Type:text/plain

Origin:file://

User-Agent:Mozilla/5.0 (Linux; Android 4.4.2; Lenovo Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36

Request Payloadview source

{,…}

处理远程请求的方法的代码如下:

// set transfer credentials

$http({

method : 'POST',

url : $scope.remoteUrl,

data: {img_base64: "/9j/4AAQSkZ"},

headers: 'application/json',

timeout: 10000

// success response

}).success(function(data, status, headers, config) {

//SUCESSS

} else {

//PROCESSING ERROR

}

// error response

}).error(function(data, status, headers, config) {

// ERROR

});

但是没有运气。

服务器端通过这种方式处理请求:

$inputJSON = file_get_contents('php://input');

$input= json_decode( $inputJSON, TRUE ); //convert JSON into array

如果我试图使用邮递员或卷曲发送请求,一切似乎都在工作。

离子信息:

Node Version: v0.12.2

Cordova CLI: 5.0.0

Ionic CLI Version: 1.3.22

Xcode version: Xcode 6.3.1 Build version 6D1002

ios-sim version: Not installed

ios-deploy version: Not installed

AngularJS版本:

"version": "1.3.13",

我该如何解决?

非常感谢您的任何建议