Skip to content

Instantly share code, notes, and snippets.

@azami
Last active August 29, 2015 14:01
Show Gist options
  • Save azami/050d4dc9e7e209208cb4 to your computer and use it in GitHub Desktop.
Save azami/050d4dc9e7e209208cb4 to your computer and use it in GitHub Desktop.
angularjsのroute paramsにアクセスするときは$routeをつかう
when('/sample/:id', {
templateUrl: 'sample.html',
controller: 'sampleController',
resolve: {
media: function(resource, $route) {
return resource.get({id: $route.current.params.id});
}
}
}).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment