erreur firebase et angularfire

Par med001, il y a 9 ans


Salut, j'installe angularfire et firebase avec bower mais je trouve ce probléme

et quand il click sur le probléme d'angualrfire

var app = angular.module('myApp', ['ui.router','ionic']) .run(function($ionicPlatform) { $ionicPlatform.ready(function() { if(window.cordova && window.cordova.plugins.Keyboard) { // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard // for form inputs) cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true); // Don't remove this line unless you know what you are doing. It stops the viewport // from snapping when text inputs are focused. Ionic handles this internally for // a much nicer keyboard experience. cordova.plugins.Keyboard.disableScroll(true); } if(window.StatusBar) { StatusBar.styleDefault(); } }); }) // Initialize Firebase .config(function() { var config = { apiKey: "mon api", authDomain: "mon domaine", databaseURL: "mon db", storageBucket: "storage", messagingSenderId: "..." }; firebase.initializeApp(config); }) app.config(['$stateProvider','$urlRouterProvider', function($stateProvider,$urlRouterProvider) { $stateProvider.state("home",{ url : "/home", templateUrl : "templates/home.html" , controller: "HomeCtrl"}); $stateProvider.state("Inscription",{ url : "/inscription", templateUrl : "templates/inscription.html" , controller: "InscriCtrl"}); $stateProvider.state("listmsg",{ url : "/listmsg", templateUrl : "templates/list.html" , controller: "ListCtrl"}); $stateProvider.state("msg",{ url : "/msg", templateUrl : "templates/msg.html" , controller: "MsgCtrl"}); $urlRouterProvider.otherwise("home"); }]); app.controller('HomeCtrl', [,'$firebaseSimpleLogin',function($scope,$firebaseSimpleLogin) { var firebaseObj = new Firebase("https://appsfactor-68466.firebaseio.com"); var loginObj = $firebaseSimpleLogin(firebaseObj); $scope.SignIn = function(event) { event.preventDefault(); // To prevent form refresh var username = $scope.user.email; var password = $scope.user.password; loginObj.$login('password', { email: username, password: password }) .then(function(user) { // Success callback console.log('Authentication successful'); }, function(error) { // Failure callback console.log('Authentication failure'); }); } }]); app.controller('InscriCtrl', [function() { }]); app.controller('ListCtrl', [function() { }]); app.controller('MsgCtrl', [function() { }]);

code index.html

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title></title> <link rel="manifest" href="manifest.json"> <!-- un-comment this code to enable service worker <script> if ('serviceWorker' in navigator) { navigator.serviceWorker.register('service-worker.js') .then(() => console.log('service worker installed')) .catch(err => console.log('Error', err)); } </script>--> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <link rel="icon" href="http://getbootstrap.com/favicon.ico"> <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="http://getbootstrap.com/examples/signin/signin.css" rel="stylesheet"> <!-- AngularFiionic servere --> <script src="lib/firebase/firebase.js"></script> <script src="lib/angularfire/dist/angularfire.js"></script> <link href="lib/ionic/css/ionic.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above <link href="css/ionic.app.css" rel="stylesheet"> --> <!-- ionic/angularjs js --> <script src="lib/ionic/js/ionic.bundle.js"></script> <script src="lib/ionic/js/angular-ui/angular-ui-router.js"></script> <!-- cordova script (this will be a 404 during development) --> <script src="cordova.js"></script> <!-- your app's js --> <script src="js/app.js" ></script> </head> <body ng-app="myApp"> <ion-side-menus> <ion-side-menu-content> <ion-nav-bar class="bar-calm"> <ion-nav-buttons> <button menu-toggle="left" class="button button-icon ion-navicon"> </button> </ion-nav-buttons> </ion-nav-bar> <ion-nav-view> </ion-nav-view> </ion-side-menu-content> <ion-side-menu side="left"> <ion-item menu-close ui-sref="home">Acceuil</ion-item> <ion-item menu-close ui-sref="Inscription">Inscription</ion-item> <ion-item menu-close ui-sref="listmsg">Listes Messages</ion-item> <ion-item menu-close ui-sref="msg">Message</ion-item> </ion-side-menu> </ion-side-menus> </body> </html>

quelle est la solution et merci

11 réponses

Kenor, il y a 9 ans

" The ionic.bundle.js file combines all the required JS files, both Ionic and Angular."

Donc j'en déduis que c'est après "ionic.bundle.js" que tu dois inclure tes 2 fichiers.

med001, il y a 9 ans

voilà mais même probléme :(

Kenor, il y a 9 ans

relis toi (ou relis moi)

Kenor, il y a 9 ans

La première erreur qu'on peut lire c'est "angular is not defined". Par conséquent, on peut en déduire que tu as du mettre le module firebase avant d'avoir déclaré angular ? Ce qui fait que l'erreur se trouve fort logiquement à la première ligne où angular est requis par firebase.

med001, il y a 9 ans

@kenor , j met comme ça

<script src="lib/angularfire/dist/angularfire.js"></script> <script src="lib/firebase/firebase.js"></script>

mais même probléme

med001, il y a 9 ans

@kenor , j'inclu les 2 fichiers apres ionic.js , probléme de angular est résolu mais probléme de firebase toujours existe

Kenor, il y a 9 ans

Je ne connais pas firebase, mais sur ton code initial, tu avais mis firebase puis angularfire (ce qui serait logique), tu l'as bien mis dans ce sens ?

Lartak, il y a 9 ans

Bonsoir.
D'après la documentation de AngularFire :

Before we can use AngularFire with dependency injection, we need to register firebase as a module in our application.

var app = angular.module("sampleApp", ["firebase"]);

Source : Quickstart | AngularFire » 4. Inject the AngularFire Services.
Donc dans ton cas :

var app = angular.module('myApp', ['ui.router', 'ionic', 'firebase'])
med001, il y a 9 ans

je résolu le probléme merci mais maintenant je trouve cette erreur

erreur existe ici

app.controller('HomeCtrl', [,'$firebaseSimpleLogin',function($scope,$firebaseSimpleLogin) { var firebaseObj = new Firebase("https://appsfactor-68466.firebaseio.com"); var loginObj = $firebaseSimpleLogin(firebaseObj); $scope.SignIn = function(event) { event.preventDefault(); // To prevent form refresh var username = $scope.user.email; var password = $scope.user.password; loginObj.$login('password', { email: username, password: password }) .then(function(user) { // Success callback console.log('Authentication successful'); }, function(error) { // Failure callback console.log('Authentication failure'); }); } }]);

quelle est la solution et merci d'avance

Lartak, il y a 9 ans

Comme il est précisé dans le message d'erreur, le provider firebaseSimpleLogin lui est inconnu.

Defy, il y a 9 ans

tu importe bien firebase dans ton modile principal?