我正在尝试登录离子(角度)应用程序,我想使用http get。但是,似乎没有任何回报..
.controller('LoginCtrl', ['$scope','md5', function($scope, $http, md5, $state) {
$scope.data = {};
$scope.login = function() {
var pass = md5.createHash($scope.data.password || '');
$http.get("http://<link>.com")
.then(function(response){ $scope.field = response.data; });
}
}])
$ scope.field只是html页面中的一个文本字段。 但它只是保持空白,无论http链接是什么..
编辑:是的,传递和凭据尚未使用,因为我首先想要http get返回一些内容。