I have a rails application which use AngularJS and I have a problem, the problem is that I want redirect to a certain state
after a form is submited, but in the chrome's console I have a ReferenceError: $state is not defined
and nothing happens.
This is my controller.
angular.module('myapp')
.controller('CreatePollCtrl', ['$scope', 'Restangular', '$state',
function($scope, Restangular) {
$scope.addPoll = function() {
if ($scope.allow_anonymous_answer == null)
$scope.allow_anonymous_answer = false
var poll = {title: $scope.title, description: $scope.description, allow_anonymous_answer: $scope.allow_anonymous_answer, initial_message: $scope.initial_message, final_message: $scope.final_message};
Restangular.all('polls').post(poll).then(function(response) {
$state.go('dashboard');
});
};
}]);
What can I do?, is $state
correctly injected?
I have a rails application which use AngularJS and I have a problem, the problem is that I want redirect to a certain state
after a form is submited, but in the chrome's console I have a ReferenceError: $state is not defined
and nothing happens.
This is my controller.
angular.module('myapp')
.controller('CreatePollCtrl', ['$scope', 'Restangular', '$state',
function($scope, Restangular) {
$scope.addPoll = function() {
if ($scope.allow_anonymous_answer == null)
$scope.allow_anonymous_answer = false
var poll = {title: $scope.title, description: $scope.description, allow_anonymous_answer: $scope.allow_anonymous_answer, initial_message: $scope.initial_message, final_message: $scope.final_message};
Restangular.all('polls').post(poll).then(function(response) {
$state.go('dashboard');
});
};
}]);
What can I do?, is $state
correctly injected?
2 Answers
Reset to default 9you forgot add $state
to function()
angular.module('myapp')
.controller('CreatePollCtrl', ['$scope', 'Restangular', '$state',
function($scope, Restangular, $state) {
Add $state
as a parameter to your function, like $scope.addPoll = function($state) {...}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633032a4481685.html
评论列表(0条)