recherche

Maison  >  Questions et réponses  >  le corps du texte

angulaire.js - Comment écrire le code js d'une page de redirection dans angulaire-ui-route ?

Ou $location.path()

Mon code est comme ceci :

 $scope.toCreate = function () {
         console.log('create')
         $state.go('createAccount')
     }
 $stateProvider.state('login', {
            url:'/login',
            templateUrl:'js/pages/login.html',
            controller:'loginCtrl'
        }).state('createAccout', {
                url:'/createAccount',
                templateUrl:'js/pages/createAccount.html',
                controller:'createAccountCtrl'
            })

La console du navigateur signale l'erreur suivante :

Error: Could not resolve 'createAccount' from state 'login'
    at Object.transitionTo (http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:33795:39)
    at Object.go (http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:33678:19)
    at Scope.$scope.toCreate (http://localhost:63342/atMoon/www/js/controllers/loginCtrl.js:8:17)
    at http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:18520:21
    at http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:42067:9
    at Scope.$eval (http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:20382:28)
    at Scope.$apply (http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:20480:23)
    at HTMLButtonElement.<anonymous> (http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:42066:13)
    at http://localhost:63342/atMoon/www/lib/ionic/js/ionic.bundle.js:10674:10
    at Array.forEach (native) 

Pourquoi est-ce

高洛峰高洛峰2775 Il y a quelques jours718

répondre à tous(5)je répondrai

  • 大家讲道理

    大家讲道理2017-05-15 16:52:02

    Présentez le service $state, puis utilisez $state.go. Voir la documentation pour les paramètres spécifiques : $state#go

    répondre
    0
  • PHP中文网

    PHP中文网2017-05-15 16:52:02

    J'ai rencontré le même problème !

    .controller('CinemasCtrl', function($scope, $rootScope, $state) {
            ...
    
            $scope.show = function(cinemaId) {
              $state.go('cinema.info', { id: cinemaId });
            };
    
            ...
    })
    

    Le service $state a été introduit, mais le même problème persiste. L'avez-vous résolu ?

    répondre
    0
  • 高洛峰

    高洛峰2017-05-15 16:52:02

    Intercepteur $httpProvider

    .factory('auth403', ['$rootScope', '$q', '$location', function auth403($rootScope, $q, $location) {
    
          return {
            request: function (config) {
              console.log(config);
              var start = new Date();
              return config;
            },
            response: function (result) {
    
              return result;
            },
            responseError: function (rejection) {
              console.warn('Failed with http', (rejection.message || rejection.status), 'status');
              if (rejection.status == 403) {
                console.warn('Forbidden, need login to auth');
                $location.path('/login');
              }
              return $q.reject(rejection);
            }
          };
              }])
    

    répondre
    0
  • 仅有的幸福

    仅有的幸福2017-05-15 16:52:02

    angular.module('ngApp', ['ui.router'])
    .config(fonction ($stateProvider, $urlRouterProvider) {
    ……
    })
    ##

    répondre
    0
  • PHP中文网

    PHP中文网2017-05-15 16:52:02

    state('createAccout', {
      url:'/createAccount',
        templateUrl:'js/pages/createAccount.html',
        controller:'createAccountCtrl'
      })
    

    createAccount.html Créé ?
    createAccountCtrl Ce fichier JS est-il importé en html ?

    répondre
    0
  • Annulerrépondre