Skip to content

Instantly share code, notes, and snippets.

@naveenrobo
Created September 21, 2017 12:01
Show Gist options
  • Save naveenrobo/afabd2e345e39c13e7ca6c3ab51d5f22 to your computer and use it in GitHub Desktop.
Save naveenrobo/afabd2e345e39c13e7ca6c3ab51d5f22 to your computer and use it in GitHub Desktop.
AngularJS : service - w3schools
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.htm").then(function (response) {
$scope.myWelcome = response.data;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment