首頁  >  問答  >  主體

angular.js - angular-ui-route中重定向頁面js程式碼怎麼寫?

還是$location.path()麼

我的程式碼是這樣的:

 $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'
            })

瀏覽器控制台報錯如下:

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) 

這是為什麼

高洛峰高洛峰2735 天前685

全部回覆(5)我來回復

  • 大家讲道理

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

    引入 $state 服务,然后使用 $state.go 即可。具體參數看文檔:$state#go

    回覆
    0
  • PHP中文网

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

    遇到了同樣的問題!

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

    引入了$state服務,但還是出現相同的問題,不知道你解決了沒有?

    回覆
    0
  • 高洛峰

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

    $httpProvider 攔截器

    雷雷 雷雷

    回覆
    0
  • 仅有的幸福

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

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

    回覆
    0
  • PHP中文网

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

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

    createAccount.html 创建了吗?
    createAccountCtrl 這個 JS 檔案引入到 html 中了嗎?

    回覆
    0
  • 取消回覆