I have a login page. When the username and password are correct, I want to redirect from the login page to the HomePage.html page.
login.html
<ion-view view-title="Login" name="login-view">
<ion-content class="padding">
<div class="list list-inset">
<label class="item item-input">
<input type="text" placeholder="Username" ng-model="data.username">
</label>
<label class="item item-input">
<input type="password" placeholder="Password" ng-model="data.password">
</label>
</div>
<button class="button button-block button-calm" ng-click="login()">Login</button>
</ion-content>
</ion-view>
homepage.html
<label id="test">test</label>
controller.js
.controller('LoginCtrl', function ($scope, LoginService, $ionicPopup, $state) {
$scope.data = {};
$scope.login = function () {
LoginService.loginUser($scope.data.username, $scope.data.password).success(function (data) {
$state.go('/HomePage');
}).error(function (data) {
var alertPopup = $ionicPopup.alert({
title: 'Login failed!',
template: 'Please check your credentials!'
});
});
}
})
Question:
When I try to make the code below
$state.go('/HomePage');
this does not work for me.
I get below exceptions as below
Error: Could not resolve '/HomePage' from state 'login'
How can I go to the homepage.html page from the login page.
Any help would be appreciated.
Thanks.
source
share