在我的IONIC应用程序中,我希望在填写表格后显示屏幕的时间为3秒。
我设法让应用程序执行此操作,但是只有下一次在屏幕上填充表单时它才能工作一次?
查看我的控制器:
.controller('splashScrn', function($location, $timeout) {
$timeout(function() {
$location.path('/welcome');
}, 3000);
})
我的欢迎控制器,用于在表单完成后加载启动的表单。
.controller('welcomeCtrl', function($scope, $http, $state, Post, Idle, $window) {
$scope.newPost = function() {
var post = new Post($scope.postData);
post.$save();
$state.go('splashscreen');
}
})