本文介绍了angular2中没有导出的成员"ROUTER_DIRECTIVES"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
import { AppModule } from './app/app.module';
import { ROUTER_DIRECTIVES } from '@angular/router';
它给出了错误没有导出的成员'ROUTER_DIRECTIVES'
如何解决此问题?
推荐答案
ROUTER_DIRECTIVES成员已弃用
ROUTER_DIRECTIVES member is deprecated
<a [routerLinks] ="['']"> home </a> | <a [routerLinks] ="['/user']" > user </a>
代替
import { routing } from './app.routes';
路由是导入@ngModule
routing is Import @ngModule
@NgModule({
declarations: [ AppComponent],
imports: [BrowserModule, FormsModule , routing],
providers : [],
bootstrap: [AppComponent]
})
app.component.html
app.component.html
<a routerLink="/" routerLinkActive="active"> Home </a> | <a routerLink="/user" > User </a>
在不重新加载页面的情况下进行导航
Navigation by without reload page
这篇关于angular2中没有导出的成员"ROUTER_DIRECTIVES"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!