Dies ist das erste Mal, dass ich versuche, UI-Router zu verwenden.
Hier ist meine app.js.
angular.module('myApp', ['ionic'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
});
})
.config(function($stateProvider, $urlRouterProvider){
$urlRouterProvider.otherwise("/index.html");
$stateProvider.state('index', {
url: '/'
template: "index.html",
controller: 'loginCtrl'
});
$stateProvider.state('register', {
url: "/register"
template: "register.html",
controller: 'registerCtrl'
});
})
Wie Sie sehen können, habe ich zwei Zustände. Ich versuche, den Status wie folgt zu registrieren:
<a ui-sref="register">
<button class="button button-balanced">
Create an account
</button>
</a>
Aber ich bekomme
'Register' konnte nicht aus dem Status '' aufgelöst werden.
Ausnahme. Was ist das Problem hier?