2015-11-06 12:26:24 +00:00
|
|
|
@cheatsheetSection
|
|
|
|
Dependency injection configuration
|
2016-08-08 17:18:50 -07:00
|
|
|
@cheatsheetIndex 10
|
2015-11-06 12:26:24 +00:00
|
|
|
@description
|
|
|
|
|
|
|
|
@cheatsheetItem
|
2016-08-29 18:13:35 -07:00
|
|
|
syntax(ts):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyService, useClass: MyMockService }`|`provide`|`useClass`
|
2015-12-12 21:17:26 -06:00
|
|
|
syntax(js):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyService, useClass: MyMockService }`|`provide`|`useClass`
|
2015-12-09 12:33:42 +00:00
|
|
|
description:
|
2016-09-01 12:06:42 -07:00
|
|
|
Sets or overrides the provider for `MyService` to the `MyMockService` class.
|
2015-11-06 12:26:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
@cheatsheetItem
|
2016-08-29 18:13:35 -07:00
|
|
|
syntax(ts):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyService, useFactory: myFactory }`|`provide`|`useFactory`
|
2015-12-12 21:17:26 -06:00
|
|
|
syntax(js):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyService, useFactory: myFactory }`|`provide`|`useFactory`
|
2015-12-09 12:33:42 +00:00
|
|
|
description:
|
2016-09-01 12:06:42 -07:00
|
|
|
Sets or overrides the provider for `MyService` to the `myFactory` factory function.
|
2015-11-06 12:26:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
@cheatsheetItem
|
2016-08-29 18:13:35 -07:00
|
|
|
syntax(ts):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyValue, useValue: 41 }`|`provide`|`useValue`
|
2015-12-12 21:17:26 -06:00
|
|
|
syntax(js):
|
2016-06-16 00:11:39 +02:00
|
|
|
`{ provide: MyValue, useValue: 41 }`|`provide`|`useValue`
|
2015-12-09 12:33:42 +00:00
|
|
|
description:
|
2016-09-01 12:06:42 -07:00
|
|
|
Sets or overrides the provider for `MyValue` to the value `41`.
|