blob: f12c6b9f9233789d8214f1801143f703356304c6 (
plain)
1
2
3
4
5
6
7
8
|
var app = angular.module('mainApp',[]);
app.controller('hassan', function($scope,$http){
$http.get('http://127.0.0.1/database.json').success(function(response){
$scope.persons = response.records;
});
});
|