我在 Angular 中Controller
嵌入了一个未命名State
的代码,我想重用代码和模板,这样我也可以将它用于不同 URL 中的状态。有没有办法做到这一点?我可以Controller
从另一个文件中引用一个吗?
我想做的例子:states.js.coffee.erb
#other state up here
])
).state('do-something',
url: '/do-something/:id'
views:
'users':
templateUrl: '<%= template_path('user-do_something') %>'
controller: 'Controllers.SomethingController'
).state('other-state',
url: '/other-state'
controllers.js.coffee.erb
angular.module("Controllers", [])
.controller('SomethingController', ['$scope', ($scope) ->
$scope.variable_a = ""