Skip to content

Instantly share code, notes, and snippets.

View jiansenlu's full-sized avatar

Jiansen Lu jiansenlu

View GitHub Profile
@jiansenlu
jiansenlu / app.js
Created March 9, 2014 06:57 — forked from jrmoran/app.js
var App = angular.module('App', []);
App.controller('TodoCtrl', function($scope, $http) {
$http.get('todos.json')
.then(function(res){
$scope.todos = res.data;
});
});
@jiansenlu
jiansenlu / gist:9443807
Created March 9, 2014 06:49
Json in AngularJS
test