在开发大型 AngularJS 应用程序时,将 URL 写入应用程序路由中的模板文件通常很麻烦,例如:
$routeProvider.when('/login', {templateUrl: 'app/views/application/authentication/login.html', controller: 'MyCtrl1'});
有没有办法在 Angular 中使用某种 URL 助手类或实用程序类来将其缩短为:
$helper.getView('application/authentication/login.html')
访问图像时的相同功能
<img src="../../../img/myimage.jpg" alt="my Image" />