Skip to content

Instantly share code, notes, and snippets.

View AlipioAfonso2's full-sized avatar

Alípio Afonso de Almeida Oliveira AlipioAfonso2

View GitHub Profile
@AlipioAfonso2
AlipioAfonso2 / app.js
Created January 26, 2017 23:12 — forked from jrmoran/app.js
AngularJS - basic async request
var App = angular.module('App', []);
App.controller('TodoCtrl', function($scope, $http) {
$http.get('todos.json')
.then(function(res){
$scope.todos = res.data;
});
});