我是混合应用程序开发人员的新手,使用Appgyver Supersonic
我试图为用户登录http请求,下面是代码:
$http.post({
url: 'http://www.somesite.com/check.login.php',
data: $scope.logd,
crossDomain: true,
cache: false,
headers : {'Content-Type': 'application/x-www-form-urlencoded'}
}).success(function(data, status, headers, config) {
// do something
}).error(function (data, status, headers, config) {
// do something
});
作为回应,我得到数据:
<html><head><meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'></head><body><h1>404 Not Found</h1>/app/login/[object Object] was not found.</body></html>
响应状态为200,
我也是angularjs的新手, 能告诉我这里可能存在的问题以及可采取的措施吗?