Skip to content

Instantly share code, notes, and snippets.

@mnsmarcelo
Created September 29, 2015 00:44
Show Gist options
  • Save mnsmarcelo/2b669886ddf486274ab8 to your computer and use it in GitHub Desktop.
Save mnsmarcelo/2b669886ddf486274ab8 to your computer and use it in GitHub Desktop.
var listApp = angular.module('listApp', []);
listApp.controller('mainController', function($scope,$http){
$scope.titulo = 'Produtos';
$http.get('json.php').success(function (data) {
$scope.produtos = data.produtos;
}).error(function (data, status, headers, config) { });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment