Guest User

Untitled

a guest
Jul 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. angular.module('myApp').controller('profissoesCtrl', function ($scope, $http) {
  2. $scope.profissoes = [];
  3. var carregarProfissoes = function (){
  4. $http.get("ListaProfissoes.php").then(function(response){
  5. $scope.profissoes=response.data;
  6. });
  7. };
  8. carregarProfissoes();
Add Comment
Please, Sign In to add comment