Created
May 26, 2015 11:32
-
-
Save johnlindquist/d62f5f51dad2098174d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module("food", []) | |
.service("foodService", function($http){ | |
var foodService = this; | |
foodService.requestMenu = function(){ | |
//Don't eat people. People are friends, not food! | |
return $http.get("people.json").then(function(result){ | |
return result.data.results; | |
}) | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en" ng-app="workshop"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AngularJS Jumpstart</title> | |
<link rel="stylesheet" href="bootstrap.min.css"/> | |
<script src="angular.js"></script> | |
<script src="workshop.js"></script> | |
<script src="food.js"></script> | |
</head> | |
<body ng-controller="BodyController as body"> | |
<div ng-repeat="meal in body.menu">{{meal.name}}</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"count": 86, | |
"next": "http://swapi.co/api/people/?page=2", | |
"previous": null, | |
"results": [ | |
{ | |
"name": "Luke Skywalker", | |
"height": "172", | |
"mass": "77", | |
"hair_color": "blond", | |
"skin_color": "fair", | |
"eye_color": "blue", | |
"birth_year": "19BBY", | |
"gender": "male", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/7/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [ | |
"http://swapi.co/api/vehicles/14/", | |
"http://swapi.co/api/vehicles/30/" | |
], | |
"starships": [ | |
"http://swapi.co/api/starships/12/", | |
"http://swapi.co/api/starships/22/" | |
], | |
"created": "2014-12-09T13:50:51.644000Z", | |
"edited": "2014-12-20T21:17:56.891000Z", | |
"url": "http://swapi.co/api/people/1/" | |
}, | |
{ | |
"name": "C-3PO", | |
"height": "167", | |
"mass": "75", | |
"hair_color": "n/a", | |
"skin_color": "gold", | |
"eye_color": "yellow", | |
"birth_year": "112BBY", | |
"gender": "n/a", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/5/", | |
"http://swapi.co/api/films/4/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/2/" | |
], | |
"vehicles": [], | |
"starships": [], | |
"created": "2014-12-10T15:10:51.357000Z", | |
"edited": "2014-12-20T21:17:50.309000Z", | |
"url": "http://swapi.co/api/people/2/" | |
}, | |
{ | |
"name": "R2-D2", | |
"height": "96", | |
"mass": "32", | |
"hair_color": "n/a", | |
"skin_color": "white, blue", | |
"eye_color": "red", | |
"birth_year": "33BBY", | |
"gender": "n/a", | |
"homeworld": "http://swapi.co/api/planets/8/", | |
"films": [ | |
"http://swapi.co/api/films/7/", | |
"http://swapi.co/api/films/5/", | |
"http://swapi.co/api/films/4/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/2/" | |
], | |
"vehicles": [], | |
"starships": [], | |
"created": "2014-12-10T15:11:50.376000Z", | |
"edited": "2014-12-20T21:17:50.311000Z", | |
"url": "http://swapi.co/api/people/3/" | |
}, | |
{ | |
"name": "Darth Vader", | |
"height": "202", | |
"mass": "136", | |
"hair_color": "none", | |
"skin_color": "white", | |
"eye_color": "yellow", | |
"birth_year": "41.9BBY", | |
"gender": "male", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [], | |
"starships": [ | |
"http://swapi.co/api/starships/13/" | |
], | |
"created": "2014-12-10T15:18:20.704000Z", | |
"edited": "2014-12-20T21:17:50.313000Z", | |
"url": "http://swapi.co/api/people/4/" | |
}, | |
{ | |
"name": "Leia Organa", | |
"height": "150", | |
"mass": "49", | |
"hair_color": "brown", | |
"skin_color": "light", | |
"eye_color": "brown", | |
"birth_year": "19BBY", | |
"gender": "female", | |
"homeworld": "http://swapi.co/api/planets/2/", | |
"films": [ | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [ | |
"http://swapi.co/api/vehicles/30/" | |
], | |
"starships": [], | |
"created": "2014-12-10T15:20:09.791000Z", | |
"edited": "2014-12-20T21:17:50.315000Z", | |
"url": "http://swapi.co/api/people/5/" | |
}, | |
{ | |
"name": "Owen Lars", | |
"height": "178", | |
"mass": "120", | |
"hair_color": "brown, grey", | |
"skin_color": "light", | |
"eye_color": "blue", | |
"birth_year": "52BBY", | |
"gender": "male", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/5/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [], | |
"starships": [], | |
"created": "2014-12-10T15:52:14.024000Z", | |
"edited": "2014-12-20T21:17:50.317000Z", | |
"url": "http://swapi.co/api/people/6/" | |
}, | |
{ | |
"name": "Beru Whitesun lars", | |
"height": "165", | |
"mass": "75", | |
"hair_color": "brown", | |
"skin_color": "light", | |
"eye_color": "blue", | |
"birth_year": "47BBY", | |
"gender": "female", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/5/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [], | |
"starships": [], | |
"created": "2014-12-10T15:53:41.121000Z", | |
"edited": "2014-12-20T21:17:50.319000Z", | |
"url": "http://swapi.co/api/people/7/" | |
}, | |
{ | |
"name": "R5-D4", | |
"height": "97", | |
"mass": "32", | |
"hair_color": "n/a", | |
"skin_color": "white, red", | |
"eye_color": "red", | |
"birth_year": "unknown", | |
"gender": "n/a", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/2/" | |
], | |
"vehicles": [], | |
"starships": [], | |
"created": "2014-12-10T15:57:50.959000Z", | |
"edited": "2014-12-20T21:17:50.321000Z", | |
"url": "http://swapi.co/api/people/8/" | |
}, | |
{ | |
"name": "Biggs Darklighter", | |
"height": "183", | |
"mass": "84", | |
"hair_color": "black", | |
"skin_color": "light", | |
"eye_color": "brown", | |
"birth_year": "24BBY", | |
"gender": "male", | |
"homeworld": "http://swapi.co/api/planets/1/", | |
"films": [ | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [], | |
"starships": [ | |
"http://swapi.co/api/starships/12/" | |
], | |
"created": "2014-12-10T15:59:50.509000Z", | |
"edited": "2014-12-20T21:17:50.323000Z", | |
"url": "http://swapi.co/api/people/9/" | |
}, | |
{ | |
"name": "Obi-Wan Kenobi", | |
"height": "182", | |
"mass": "77", | |
"hair_color": "auburn, white", | |
"skin_color": "fair", | |
"eye_color": "blue-gray", | |
"birth_year": "57BBY", | |
"gender": "male", | |
"homeworld": "http://swapi.co/api/planets/20/", | |
"films": [ | |
"http://swapi.co/api/films/5/", | |
"http://swapi.co/api/films/4/", | |
"http://swapi.co/api/films/6/", | |
"http://swapi.co/api/films/3/", | |
"http://swapi.co/api/films/2/", | |
"http://swapi.co/api/films/1/" | |
], | |
"species": [ | |
"http://swapi.co/api/species/1/" | |
], | |
"vehicles": [ | |
"http://swapi.co/api/vehicles/38/" | |
], | |
"starships": [ | |
"http://swapi.co/api/starships/48/", | |
"http://swapi.co/api/starships/59/", | |
"http://swapi.co/api/starships/64/", | |
"http://swapi.co/api/starships/65/", | |
"http://swapi.co/api/starships/74/" | |
], | |
"created": "2014-12-10T16:16:29.192000Z", | |
"edited": "2014-12-20T21:17:50.325000Z", | |
"url": "http://swapi.co/api/people/10/" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module("workshop", ["food"]) | |
.controller("BodyController", function(foodService){ | |
var body = this; | |
foodService.requestMenu().then(function(menu){ | |
body.menu = menu; | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment