我正在尝试使用Auth0进行用户身份验证,但是我无法将其添加到Angular项目中。我正在将Angular1与Webpack一起使用,看来我没有正确加载Auth0。这是我的app.js文件的内容;

import 'jquery';
import 'bootstrap/dist/css/bootstrap.min.css';
import angular from 'angular';
import uiRouter from 'angular-ui-router';
import auth0 from 'auth0-angular';
import lock from 'auth0-lock';
import cookies from 'angular-cookies';
import storage from 'angular-storage';
import jwt from 'angular-jwt';
import AppComponent from './app.component.js';
import Common from './common/common';
import Components from './components/components';
import './styles.scss';

angular.module('myApp', [
  'auth0',
  'ui.router',
  'angular-storage',
  'angular-jwt',
  'app.common',
  'app.components',
])
  .directive('app', AppComponent)
  .constant('API', 'http://localhost:8000')
  .config(['$urlRouterProvider', 'authProvider', function ($urlRouterProvider, authProvider) {

authProvider.init({
  domain: '.eu.auth0.com',
  clientID: '',
  loginState: 'login'
});

authProvider.on('loginSuccess', function ($location, profilePromise, idToken, store) {
  profilePromise.then(function (profile) {
    store.set('profile', profile);
    store.set('token', idToken);
  });
  $location.path('/');
});

authProvider.on('loginFailure', function () {
  $location.path('/login');
});

$urlRouterProvider.otherwise('/login');



}]).run(['$rootScope', 'auth', 'store', 'jwtHelper', '$urlRouterProvider', function ($rootScope, auth, store, jwtHelper, $urlRouterProvider) {
    auth.hookEvents();
  }]);


我相信我正在导入和加载auth0,所以我不明白为什么会这样。我认为这是一个较小的语法错误。

最佳答案

我当时遇到了同样的问题。我使用require而不是import。

无论如何,auth0-angular模块在全局窗口对象上搜索auth0或auth0lock。通过使用require包含auth0-lock(我想在您的情况下也使用import),auth0lock模块不会绑定到全局窗口对象。

解决方案是将auth0-lock传递给auth0-angular作为参数。这样,auth0-angular会使用它,而不会查看window对象。

请参阅如何将auth0lock作为第二个参数传递给authProvider.init()函数。

var auth0lock = require('auth0-lock');

var angular = require('angular');

require('angular-cookies');
require('angular-route');
require('auth0-angular');
require('angular-storage');
require('angular-jwt');

angular.module('myapp', ['auth0', 'angular-storage', 'angular-jwt', 'ngRoute'])
  .config(function(authProvider) {
    authProvider.init({
      domain: 'myauth0domain',
      clientID: 'myclientid'
    }, auth0lock);
  })
  .run(function(auth) {
    auth.hookEvents();
  });

关于angularjs - Auth0和Angular错误-无法初始化Auth0Angular。 Auth0Lock或Auth0必须可用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37624269/

10-10 21:26