Skip to content

Instantly share code, notes, and snippets.

@2624789
Created May 11, 2015 20:12
Show Gist options
  • Save 2624789/5f47de6003bdbb597d80 to your computer and use it in GitHub Desktop.
Save 2624789/5f47de6003bdbb597d80 to your computer and use it in GitHub Desktop.
## File: www/index.html
var app = angular.module('app', ['ionic', 'restmod'])
## File: www/modelos/Supermercado.js
app.factory('Supermercado', function(restmod) {
return restmod.model('http://localhost:3000/api/v1/supermercados')
})
## File: www/controladores/supermercados.js
app.controller('ListaMercados', function($scope, Supermercado) {
$scope.mercados = Supermercado.$collection
console.log('Supermercados: ' + $scope.mercados)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment