在重定向到另一个页面之前,我无法先显示烤面包机

时间:2017-06-10 16:17:52

标签: angularjs

我在Angular脚本文件中使用过烤箱,但在重定向到另一页之前不会显示烤面包机。

HTML

<div>
    <toaster-container toaster-options="{'time-out': 3000, 'close-
         button':true, 'animation-class': 'toast-top-center','position-
            class':'toast-top-full-width' } "></toaster-container>
</div>    

的JavaScript

angular.module('myapp', ['ngAnimate', 'toaster'])
    .controller('logincontroller', function($scope, toaster, $window, $http) {
        $scope.checkdata = function() {
            toaster.error("", " Invalid Credential");
            $window.location.href =
                "/myproject/admin/PendingRequests.html";
        }
    });

代码有什么问题?

0 个答案:

没有答案