考虑代码(Angular 1.2 RC3):
main.config(['$routeProvider', '$sce', function($routeProvider, $sce) {
$routeProvider.when('/', { templateUrl: $sce.trustAsResourceUrl('bla-bla.html'), controller: "App.Controllers.BlaBla" });
$routeProvider.otherwise({ redirectTo: '/' });
}]);
它将引发异常,因为在配置期间不允许服务,并且我在这里使用“$sce”(严格上下文转义)服务。
如何在“配置”方法中使用 SCE?这个问题有什么可能的解决方案?