这是我的一个cordova应用程序的角度控制器
angular.module('mobApp.controllers', ['ionic'])
.controller('SignupController', function($scope, $http, $location) {
$scope.submitCommonSignUpForm = function(isValid, formData) {
if (isValid) {
var d = formData;
$http.post('http://X.X.X.X/api/v1.0/basicSignup',formData).
then(function(d){
}).
then(function(e){
});
}
};
});
404
我得http://X.X.X.X/api/v1.0/basicSignup
但事实是存在。知道为什么吗?
在我的应用内platform > android > res > config.xml
我有set <access origin="*" />
答案 0 :(得分:4)
您需要安装whitelist plugin from Cordova。
查看我的previous answer regarding this:
您需要安装白名单插件才能在Cordova应用中支持XHR。没有它你就无法提出外部请求。
运行:
cordova plugin add https://github.com/apache/cordova-plugin-whitelist.git