javascript - AngularJS route like SammyJS, Grapnel or Satnav? -
javascript - AngularJS route like SammyJS, Grapnel or Satnav? -
how can create route in angularjs sammyjs?
example:
.config(function($routeprovider) { $routeprovider .when('/photos/:date', { controller: function($scope) { // foo }); });
i don't need template or ng-view, need execute ajax request , open modal, example.
any idea? tks guys
.config(function($routeprovider) { $routeprovider .when('/photos/:date', { templateurl: 'someview.html', controller: function($scope,$http) { $http.get('/someulr').then(function(res){}); }); });
try this
javascript angularjs routes
Comments
Post a Comment