标签: angular5
我想将所有逻辑从组件投入使用。有没有办法为每个组件提供本地服务
答案 0 :(得分:2)
如果您想要组件的本地实例,可以做的是- 您可以在@Component装饰器中使用Providers:[SimpleService]元数据。
NullPointerException
每个ParentComponent实例现在都有其自己的SimpleService实例,因此状态不是全局共享的,而是仅在ParentComponent及其子组件之间共享。