찾다

 >  Q&A  >  본문

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('/',{
                ...
            })
            ...;
 }]);
世界只因有你世界只因有你2743일 전587

모든 응답(2)나는 대답할 것이다

  • 迷茫

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

    상수 공급자와 같은 것만 구성에 주입할 수 있지만 서비스는 주입할 수 없습니다

    회신하다
    0
  • 给我你的怀抱

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

    직접 해결했습니다. 여기서는 서비스를 소개할 수 없으며, 서비스 제공자만 소개할 수 있습니다

    회신하다
    0
  • 취소회신하다