Skip to content

Instantly share code, notes, and snippets.

@HAKASHUN
Created June 28, 2014 10:35
Show Gist options
  • Save HAKASHUN/68c93bbc99dcb5aeec8f to your computer and use it in GitHub Desktop.
Save HAKASHUN/68c93bbc99dcb5aeec8f to your computer and use it in GitHub Desktop.
肥大化した$routeProvider定義
$routeProvider.
when('/hoge', {
templateUrl: 'hoge.html',
controller: 'HogeCtrl',
controllerAs: 'ctrl',
resolve: {
data: [function(){
// ここで色々書く
}]
}
}).
when('/foo', {
templateUrl: 'foo.html',
controller: 'FooCtrl',
controllerAs: 'ctrl',
resolve: {
data: [function(){
// ここで色々書く
}]
}
}).
//... まだまだ続く
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment