Angular2全球服务提供商

前端之家收集整理的这篇文章主要介绍了Angular2全球服务提供商前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/应用
– app.component.ts
– app.component.html(隐藏/显示菜单栏)
– app.global.service.ts(公共变量LoginSuccess:boolean)
– 主要
/学生
– student.ts
– student.service.ts
– student.component.ts
– student.component.html
/安全
– login.component.ts(LoginSuccess = true)
– login.component.html

在我的Angular2应用中,我有一个简单的需要,我想根据登录成功显示隐藏菜单栏.为此,我创建了一个只有一个LoginSuccess布尔varilable的服务,我将在登录组件上设置,并将在app.component.html上使用[hidden] = LoginSuccess nav标签.

我正在面临的问题是,即使在app.global.service.ts注入app.component.ts& login.component.ts值不存在,每个构造函数创建app.global.service.ts的新对象.

问题:如何通过服务实现跨应用程序的单一价值.在Angular2文档的某个地方,我看到可注入的服务是单身人士.

您应该在引导期间提供GlobalService,而不是为每个组件提供:
bootstrap(AppComponent,[GlobalService])

@Component({
  providers: [],// yes
  // providers: [GlobalService],// NO.
})
class AppComponent {
  constructor(private gs: GlobalService) {
    // gs is instance of GlobalService created at bootstrap
  }
}

这样GlobalService将是一个单身人士.

更高级的方法this answer.

原文链接:https://www.f2er.com/angularjs/140533.html

猜你在找的Angularjs相关文章