1

我有一个非常简单的 HTML、AngularJS 应用程序,我想使用 adal-js 和 adal-angular-js。该应用程序是这样的:

var app = angular.module('myApp', ['ngRoute', 'AdalAngular']);
app.config([
    '$routeProvider', '$httpProvider', 'adalAuthenticationServiceProvider', 
    function ($routeProvider, $httpProvider, adalProvider) {

        $routeProvider
            .when('/', {
                templateUrl: "App/Views/home.html",
                controller:'myCtrl',
                requireADLogin:true,
            }).when("/autenticado", {
                templateUrl: "App/Views/autenticado.html",
                controller:'authCtrl',
            });

        adalProvider.init(
            {
                instance: 'https://login.microsoftonline.com/',
                tenant: 'supervisorxher34outlook.onmicrosoft.com',
                clientId: 'e5b17ad1-8f2d-4716-a9ad-748c48222e23',
                extraQueryParameter: 'nux=1',
                //cacheLocation: 'localStorage', // enable this for IE, as sessionStorage does not work for localhost.
            },
            $httpProvider
        );
    }
]);

主页 HTML,只是一个简单的 hello world。

当我进入该页面时,它会将我重定向到登录页面,但只要我输入我的用户名和密码,它就会不断刷新,而且永远不会停止。

知道为什么会这样吗?

谢谢!

4

1 回答 1

0

有点惭愧,但答案很简单:

 $locationProvider.html5Mode({
        enabled:true,
        requireBase: false
    }).hashPrefix('!');

只需要添加 $locationProvider。

于 2018-10-22T01:14:28.880 回答