我正在尝试从此repo实现登录身份验证服务。
所以我将folders helpers, services, models
和guards
复制到我的app
文件夹中。然后我更改了我的login
component
和html
。最后,我修改了我的app.module
。
这是app.module.ts
:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
import { Ng2BootstrapModule } from 'ng2-bootstrap/ng2-bootstrap';
import { NAV_DROPDOWN_DIRECTIVES } from './shared/nav-dropdown.directive';
import { ChartsModule } from 'ng2-charts/ng2-charts';
import { SIDEBAR_TOGGLE_DIRECTIVES } from './shared/sidebar.directive';
import { AsideToggleDirective } from './shared/aside.directive';
import { BreadcrumbsComponent } from './shared/breadcrumb.component';
import { routing } from './app.routing';
//Layouts
import { FullLayoutComponent } from './layouts/full-layout.component';
import { SimpleLayoutComponent } from './layouts/simple-layout.component';
//Main view
import { DashboardComponent } from './dashboard/dashboard.component';
//Components
import { ButtonsComponent } from './components/buttons.component';
import { CardsComponent } from './components/cards.component';
import { FormsComponent } from './components/forms.component';
import { SocialButtonsComponent } from './components/social-buttons.component';
import { SwitchesComponent } from './components/switches.component';
import { TablesComponent } from './components/tables.component';
//Icons
import { FontAwesomeComponent } from './icons/font-awesome.component';
import { SimpleLineIconsComponent } from './icons/simple-line-icons.component';
//Widgets
import { WidgetsComponent } from './widgets/widgets.component';
//Charts
import { ChartsComponent } from './charts/charts.component';
//Pages
import { p404Component } from './pages/404.component';
import { p500Component } from './pages/500.component';
import { LoginComponent } from './pages/login.component';
import { RegisterComponent } from './pages/register.component';
// used to create fake backend
import { fakeBackendProvider } from './_helpers/index';
import { MockBackend, MockConnection } from '@angular/http/testing';
import { BaseRequestOptions } from '@angular/http';
import { AuthGuard } from './_guards/index';
import { AuthenticationService, UserService } from './_services/index';
@NgModule({
imports: [
BrowserModule,
routing,
Ng2BootstrapModule,
ChartsModule,
HttpModule,
routing
],
declarations: [
AppComponent,
FullLayoutComponent,
SimpleLayoutComponent,
DashboardComponent,
ButtonsComponent,
CardsComponent,
FormsComponent,
SocialButtonsComponent,
SwitchesComponent,
TablesComponent,
FontAwesomeComponent,
SimpleLineIconsComponent,
WidgetsComponent,
ChartsComponent,
p404Component,
p500Component,
LoginComponent,
RegisterComponent,
NAV_DROPDOWN_DIRECTIVES,
BreadcrumbsComponent,
SIDEBAR_TOGGLE_DIRECTIVES,
AsideToggleDirective
],
providers: [
AuthGuard,
AuthenticationService,
UserService,
// providers used to create fake backend
fakeBackendProvider,
MockBackend,
BaseRequestOptions
],
bootstrap: [ AppComponent ]
})
export class AppModule { }
我测试了样本应用程序并且工作正常,但我正在尝试将其迁移到我的项目中。
我认为这可能是版本问题,但packages.json
有zone.js
和systemjs
,但我降级了它们,问题仍然存在于同一行:
zone.js:203错误:(SystemJS)意外的令牌<(...)
如果需要,您可以从here进行测试。
答案 0 :(得分:0)
我更改了systemjs.config.js
,问题解决了。
/**
* System configuration for Angular 2
* Adjust as necessary for your application needs.
*/
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api',
'moment': 'npm:moment/moment.js',
'ng2-charts': 'npm:ng2-charts'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular2-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
},
'ng2-charts': {
defaultExtension: 'js'
}
}
});
})(this);