SHARE
TWEET
Untitled
a guest
Dec 20th, 2014
165
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- angular.module('starter', ['ionic'])
- .controller('MehCtrl',['$scope', '$http', function($scope, $http){
- $scope.fetch =function(){
- $http({method: 'GET', url: 'https://meh.com',}).
- success(function(data,status){
- $scope.status = status;
- $scope.data = data;
- console.log($scope.data); //prints full website html
- }).
- error(function(data,status){
- $scope.data = data || "Request failed";
- $scope.status = status;
- });
- };
- $scope.fetch();
- console.log($scope.data); //prints 'undefined'
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.

