我正在尝试使用Auth0进行用户身份验证,但是我无法将其添加到我的Angular项目中。我在Webpack上使用Angular1,看来我没有正确加载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,所以我不明白为什么会这样。我认为它是一个小的语法错误..
答案 0 :(得分:1)
我在同一个问题上跑步。不过,我使用require而不是import。
无论如何,auth0-angular模块在全局窗口对象上搜索auth0或auth0lock。通过使用require包含auth0-lock(我想在你的情况下也使用import),auth0lock模块不会绑定到全局窗口对象。
解决方案是将auth0-lock传递给auth0-angular作为参数。这样,auth0-angular使用它,它不会看到窗口对象。
看看如何将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();
});
答案 1 :(得分:0)
我也遇到了这个问题。我使用的是webpack,但这里的核心问题是你需要在Angular Auth0模块之前使用Auth0 javascript文件。
与此问题类似:Managing jQuery plugin dependency in webpack。
这是我为修复它而添加的webpack插件。
module.exports = {
...
plugins: [
new webpack.ProvidePlugin({
"window.Auth0Lock": "auth0-lock",
}),
]
}