ui-router를 사용하는 것은 이번이 처음입니다.
여기 내 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'
});
})
보시다시피 두 가지 상태가 있습니다. 다음과 같이 상태를 등록하려고합니다.
<a ui-sref="register">
<button class="button button-balanced">
Create an account
</button>
</a>
하지만 나는 점점
상태 ''에서 '등록'을 해결할 수 없습니다.
예외. 여기서 문제는 무엇입니까?