Bonjour,
j'ai défini un contrôleur MailNewCtrl1 qui va gérer l'envoi de mail dans mon formulaire,et à l'intérieur de ce contrôleur un autre FileUploadCtrl1 pour gérer les pièces jointes,mon problème est que j'ai cette erreur dans le console:

Error: [$injector:unpr] Unknown provider: FileUploaderProvider <- FileUploader
http://errors.angularjs.org/1.3.2/$injector/unpr?p0=FileUploaderProvider%20%3C-%20FileUploader
    at REGEX_STRING_REGEXP (http://localhost/ProjetWeb/src/vendor/angular/angular.js:80:12)
    at http://localhost/ProjetWeb/src/vendor/angular/angular.js:3930:19
    at Object.getService [as get] (http://localhost/ProjetWeb/src/vendor/angular/angular.js:4077:39)
    at http://localhost/ProjetWeb/src/vendor/angular/angular.js:3935:45
    at getService (http://localhost/ProjetWeb/src/vendor/angular/angular.js:4077:39)
    at Object.invoke (http://localhost/ProjetWeb/src/vendor/angular/angular.js:4109:13)
    at $get.extend.instance (http://localhost/ProjetWeb/src/vendor/angular/angular.js:8356:21)
    at http://localhost/ProjetWeb/src/vendor/angular/angular.js:7608:13
    at forEach (http://localhost/ProjetWeb/src/vendor/angular/angular.js:347:20)
    at nodeLinkFn (http://localhost/ProjetWeb/src/vendor/angular/angular.js:7607:11) <div ui-view="" class="ng-scope">
voici mon code de formulaire :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<div ng-controller="MailNewCtrl1">
.........le formulaire de contact(email,sujet,message).........
<div class="form-group" ng-controller="FileUploadCtrl1"  nv-file-drop="" uploader="uploader" filters="queueLimit, customFilter" >......<!--tableau pour uploader le fichier!-->
.............</div>
</div>
merci pour l'aide