1

我是混合应用程序开发的新手,使用 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 的新手,您能否让我知道这里可能存在什么问题以及可以采取的可能措施?

4

0 回答 0