コードを検討してください (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" (Strict Contextual Escaping) サービスを使用しているため、例外がスローされます。
「config」メソッドで SCE を使用するには? この問題の可能な解決策は何ですか?