Created
May 11, 2015 20:12
-
-
Save 2624789/5f47de6003bdbb597d80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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