$ http服务无法在iPhone浏览器上运行,但在其他设备浏览器上运行正常,调试后我发现$ http请求没有到达服务器后端。
这是我在控制器中使用的登录功能:
function login() {
$http.post(ENV.apiUrl+'/users/login', { email: $scope.username, password: $scope.password }).then(handleSuccess, handleError);
}
function handleSuccess(res) {
console.log(res);
}
function handleError(err) {
console.log(err);
}