My code is like this:
$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'
})
The browser console reports the following error:
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)
Why is this
Just introduce
$state
服务,然后使用$state.go
. See the documentation for specific parameters: $state#goEncountered the same problem!
The $state service was introduced, but the same problem still occurs. Have you solved it?
$httpProvider interceptor
angular.module('ngApp', ['ui.router'])
.config(function ($stateProvider, $urlRouterProvider) {
……
})
##
createAccount.html
创建了吗?createAccountCtrl
Is this JS file introduced into html?