成功保存ng-submit表单后如何重定向到另一个视图
控制器
.factory('Post', function($resource) {
return $resource('api/add_new_order',{name: "@name", phone: "@phone"});
})
.controller('ContactCtrl', function($scope, Post, Authorization) {
// Get all posts
$scope.posts = Post.query();
// Our form data for creating a new post with ng-model
$scope.postData = {};
$scope.newPost = function() {
var post = new Post($scope.postData);
post.$save();
}
$scope.issues = {};
$scope.answer = function(){
console.log($scope.issues.name);
}
$scope.postData = Authorization;
})
答案 0 :(得分:0)
这取决于您使用的路由。 Ionic defaul是ui-router包。您首先必须在应用的$state
块中定义不同的config
( - >参见here)。然后,您可以在控制器中注入$state
服务,方法$state.go()
将执行'重定向'。