suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - angular模块config路由时,引入$sce服务出错

$sce在哪个模块里啊
为什么在config路由的时候想注入它出错啊:
Uncaught Error: [$injector:modulerr]

angular.module('marketing-module',['ngRoute','d3','ngSanitize'])
    .config(['$routeProvider','$sce',function($routeProvider,$sce){
        $routeProvider
            .when('/',{
                ...
            })
            ...;
 }]);
世界只因有你世界只因有你2744 Tage vor589

Antworte allen(2)Ich werde antworten

  • 迷茫

    迷茫2017-05-15 16:53:57

    config之中只可以注入 常量 provider 这样的玩意 service是不能注入的

    Antwort
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-15 16:53:57

    自己解决了。这里不能引入服务,只能引入服务的provider

    Antwort
    0
  • StornierenAntwort