Angular.js aHrefSanitizationWhitelist不工作​​?

时间:2015-01-15 16:53:19

标签: javascript angularjs chromium-embedded

我正在尝试使用basic Angular.js tutorial,但我在尝试设置url-schema的白名单时遇到了麻烦。

基本上我正在尝试将自定义方案( cust-scheme )添加到angular的白名单中,以避免使用unsafe:为网址添加前缀。

根据this StackOverflow的回答,我只需添加$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|cust-scheme):/); 到应用程序的配置参数。

我尝试了以下内容:

'use strict';

/* App Module */

var phonecatApp = angular.module('phonecatApp', [
  'ngRoute',
  'ngSanitize',
  'phonecatAnimations',

  'phonecatControllers',
  'phonecatFilters',
  'phonecatServices'
]);

phonecatApp.config(['$routeProvider',
  function($routeProvider) {
    $routeProvider.
      when('/phones', {
        templateUrl: 'partials/phone-list.html',
        controller: 'PhoneListCtrl'
      }).
      when('/phones/:phoneId', {
        templateUrl: 'partials/phone-detail.html',
        controller: 'PhoneDetailCtrl'
      }).
      otherwise({
        redirectTo: '/phones'
      });
  }],
  ['$compileProvider',
  function( $compileProvider ) {   
    $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|cust-scheme):/);
    $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|cust-scheme):/);
  }
]);

但它不起作用。路由很好,但 cust-scheme 架构未列入白名单。 有什么我想念的吗?也许我在做多个配置的事情错了?

我也尝试了以下内容:

'use strict';

/* App Module */

var phonecatApp = angular.module('phonecatApp', [
  'ngRoute',
  'ngSanitize',
  'phonecatAnimations',

  'phonecatControllers',
  'phonecatFilters',
  'phonecatServices'
]);

phonecatApp.config(['$routeProvider',
  function($routeProvider) {
    $routeProvider.
      when('/phones', {
        templateUrl: 'partials/phone-list.html',
        controller: 'PhoneListCtrl'
      }).
      when('/phones/:phoneId', {
        templateUrl: 'partials/phone-detail.html',
        controller: 'PhoneDetailCtrl'
      }).
      otherwise({
        redirectTo: '/phones'
      });
  }]
);

phonecatApp.config(function( $compileProvider ) {   
    $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|cust-scheme):/);
    $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|cust-scheme):/);
  }
);

在第二种情况下,架构已列入白名单,但路由不再有效。

感谢任何帮助!

你真诚的, 一个Angular.js新手:)

1 个答案:

答案 0 :(得分:7)

看起来你在语法上有点偏离,所以让我们试着"合并"这两个代码片段在一起。希望此代码是自我描述的,您可以看到我们以最安全,最简洁的方式将$routeProvider$compileProvider注入一起,立即调用我们的应用.config

phonecatApp.config(['$routeProvider', '$compileProvider', function($routeProvider, $compileProvider) {

    $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/);
    $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/);

    $routeProvider.
      when('/phones', {
        templateUrl: 'partials/phone-list.html',
        controller: 'PhoneListCtrl'
      }).
      when('/phones/:phoneId', {
        templateUrl: 'partials/phone-detail.html',
        controller: 'PhoneDetailCtrl'
      }).
      otherwise({
        redirectTo: '/phones'
      });
}]);