3

我只想在用户访问contact.html我的 AngularJS 应用程序/站点上的视图时加载特定的 CSS 文件。我发现这个答案对我来说几乎是有意义的如何在 AngularJS 中包含视图/部分特定样式charlietfl 接受的答案是:

可以将新样式表附加到$routeProvider. 为简单起见,我使用字符串,但也可以创建新的链接元素,或者为样式表创建服务

/* check if already exists first - note ID used on link element*/
/* could also track within scope object*/
if( !angular.element('link#myViewName').length){
    angular.element('head').append('<link id="myViewName" href="myViewName.css" rel="stylesheet">');
}

在页面中预加载的最大好处是任何背景图像都已经存在,并且更少的可能性FOUC

问题是我不知道在哪里$routeProvider添加代码。charlietfl 在评论中提到了将其放在哪里

如果尚未调用路线的时间,则不会。可以将此代码放在 routeProvider 内的控制器回调中,或者可能在可能更快触发的解析回调中

我已经修改了我$routeProvider的建议。我resolve在下面的对象中添加了一个.when('/contact'. 这是我的代码

angular.module('maxmythicApp', ['ngResponsiveImages'])
  .config(function ($locationProvider, $routeProvider) {
    $locationProvider.html5Mode(true);
    $locationProvider.hashPrefix = '!';
    $routeProvider
      .when('/', {
        templateUrl: '/views/design.html',
        controller: 'MainCtrl'
      })
      .when('/design', {
        templateUrl: '/views/design.html',
        controller: 'MainCtrl'
      })
      .when('/about', {
        templateUrl: '/views/about.html',
        controller: 'MainCtrl'
      })
      .when('/contact', {
        templateUrl: '/views/contact.html',
        controller: 'MainCtrl',
        resolve: 
          if( !angular.element('link#myViewName').length){
            angular.element('head').append('<link id="myViewName" href="myViewName.css" rel="stylesheet">');
          }
      })
      .otherwise({
        redirectTo: '/'
      });
  });

这行得通吗?

4

4 回答 4

9

我为它做了服务。

代码的重要部分:

var head = angular.element(document.querySelector('head')); // TO make the code IE < 8 compatible, include jQuery in your page and replace "angular.element(document.querySelector('head'))" by "angular.element('head')"

if(head.scope().injectedStylesheets === undefined)
{
    head.scope().injectedStylesheets = [];
    head.append($compile("<link data-ng-repeat='stylesheet in injectedStylesheets' data-ng-href='{{stylesheet.href}}' rel='stylesheet' />")(scope)); // Found here : http://stackoverflow.com/a/11913182/1662766
}

head.scope().injectedStylesheets.push({href: "/url/to/style.css"});

Github 中的完整代码:https ://github.com/Yappli/angular-css-injector )

于 2013-10-08T20:34:58.087 回答
2

更新这是使用 $routeProvider 注入(加载)特定 CSS 的解决方案

下面描述的解决方案是根据可在其他情况下使用的路由应用不同类和页面标题的替代方案。

对于每条路线,我都创建了一个名为“ bodyClass ”和“ title ”的新键(但你可以调用任何你喜欢的名称),它看起来像这样:

'use strict';
var myApp = angular.module('myApp', 'ngResource'])
.config(function ($routeProvider) {

myApp.siteName = 'My Cool App';

$routeProvider
    .when('/home', {
     title:'Home - ' + myApp.siteName,
     bodyClass: 'home',
     templateUrl: 'views/home.html',
     controler: 'bmsHomeCtrl'
    })
    .when('/contact', {
      title:'Contact - ' + myApp.siteName,
      bodyClass: 'contact',
      templateUrl: 'views/contact.html',
      controler: 'bmsContactCtrl'
    })
    .otherwise({
      redirectTo: '/home'
    });
});

然后对于每个 $routeChangeSuccess 事件,我都会更改<title>页面的 以及<body>.

myApp.run(['$location', '$rootScope', function($location, $rootScope) {
    $rootScope.$on('$routeChangeSuccess', function (event, current, previous) {

      if (current.$$route) {

        $rootScope.title = current.$$route.title;

        $rootScope.bodyClass = current.$$route.bodyClass;
      }
    });
}]);

您将上面的代码放在同一个主app.js(例如)文件中。

在呈现视图的 index.html 页面上,我有以下代码来获取标题和类:

<title>{{ title }}</title>

<body class="{{ bodyClass }}">

所以如果我访问我的应用程序的主页,标题标签将是

<tittle> Home - My Cool App</tittle>

身体标签将是

<body class="home">

它就像一个魅力。

我知道这个解决方案不会加载 CSS 文件,但您可以将这些样式放在“ .contact ”类中,该类仅在您到达特定路线时应用。

不确定是否能解决您的问题,但我希望这有助于或至少为您指明正确的方向。

于 2013-08-28T15:37:31.170 回答
2

对于完整的解决方案,我建议使用AngularCSS

如您所知,在 Angular 中,我们可以在页面和组件中包含模板(结构)和控制器(行为)。AngularCSS 启用了最后一个缺失的部分:附加样式表(演示文稿)。

路线示例:

$routeProvider
.when('/page1', {
  templateUrl: 'page1/page1.html',
  controller: 'page1Ctrl',
  /* Now you can bind css to routes */
  css: 'page1/page1.css'
})
.when('/page2', {
  templateUrl: 'page2/page2.html',
  controller: 'page2Ctrl',
  /* You can also enable features like bust cache, persist and preload */
  css: {
    href: 'page2/page2.css',
    bustCache: true
  }
})
.when('/page3', {
  templateUrl: 'page3/page3.html',
  controller: 'page3Ctrl',
  /* This is how you can include multiple stylesheets */
  css: ['page3/page3.css','page3/page3-2.css']
})
.when('/page4', {
  templateUrl: 'page4/page4.html',
  controller: 'page4Ctrl',
  css: [
    {
      href: 'page4/page4.css',
      persist: true
    }, {
      href: 'page4/page4.mobile.css',
      /* Media Query support via window.matchMedia API
       * This will only add the stylesheet if the breakpoint matches */
      media: 'screen and (max-width : 768px)'
    }, {
      href: 'page4/page4.print.css',
      media: 'print'
    }
  ]
});

指令示例:

myApp.directive('myDirective', function () {
  return {
    restrict: 'E',
    templateUrl: 'my-directive/my-directive.html',
    css: 'my-directive/my-directive.css'
  }
});

您可以在此处阅读有关 AngularCSS的更多信息:

http://door3.com/insights/introducing-angularcss-css-demand-angularjs

于 2015-01-13T17:43:57.893 回答
1

我认为最好/最简单的答案是我留在这里的答案。有人问了同样的问题,所以我想出了一些简单的代码和一个小的 github repo 来处理这种情况。

于 2014-11-17T18:31:59.130 回答