Reputation: 6883
Here is my Code
$stateProvider
.state('home', {
url: "/home",
templateUrl: "views/home.tpl.html",
controller:"homeController"
})
.state('test', {
url: '/test',
templateUrl: "views/test/dashboard.tpl.html",
});
My modal view in index.html page is
<div class="modal-body" ng-controller="userController">
<form ng-submit="login()" >
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="text" class="form-control" id="exampleInputEmail1" ng-model="user.email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" ng-model="user.password" placeholder="Password">
</div>
<button type="submit" class="btn btn-default">Sign In</button>
</form>
</div>
My userController function is
$scope.login = function(){
console.log($scope.user);
if($scope.user.email=="xxxx" && $scope.user.password=="123456"){
$state.go("test");
}
}
Angular js is throwing error as
TypeError: undefined is not a function at l.$scope.login (http://localhost/yyy/scripts/controllers/userController.js:15:19) at ib.functionCall
The state is not transferred. Please let me know where i am wrong
Upvotes: 3
Views: 13752
Reputation: 6883
Thanks to everyone. I found my mistake.
Earlier it was
myApp.controller('userController',['$scope', '$http','$rootScope','$stateParams', '$state', function ($scope,$http,$rootScope,$state, $stateParams)
and changed to
myApp.controller('userController',['$scope', '$http','$rootScope','$state', '$stateParams', function ($scope,$http,$rootScope,$state, $stateParams)
The injection of stateParams and state were not in order and that threwup the error.
Upvotes: 7
Reputation: 120
make sure that you injected ui.router in your angular module
var myAppModule = angular.module('myApp', ['ui.router']);
Upvotes: 1