AngularJS $ http服务无法在iPhone浏览器上运行

时间:2016-02-16 11:38:56

标签: iphone angularjs http

$ 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);
}

0 个答案:

没有答案