我的应用程序中有AngularJs ui路由器.我需要根据我的状态加载js文件.
.state('root.home',{ url: '/index.html',views: { 'header': { templateUrl: 'modules/header/html/header.html',controller: 'headerController' },'content-area': { templateUrl: 'modules/home/html/home.html',controller: 'homeController' },'footer': { templateUrl: 'modules/common/html/footer.html',controller: 'footerController' } },data: { displayName: 'Home',} })
headerController,homeController和footerController在加载home状态时有不同的js文件我们需要加载控制器js文件是否可以通过UI路由器?