2015-11-06 07:26:24 -05:00
|
|
|
@cheatsheetSection
|
|
|
|
Dependency injection configuration
|
2015-11-13 02:14:12 -05:00
|
|
|
@cheatsheetIndex 9
|
2015-11-06 07:26:24 -05:00
|
|
|
@description
|
2016-04-01 16:03:10 -04:00
|
|
|
{@target dart}`import 'package:angular2/core.dart';`{@endtarget}
|
2015-11-06 07:26:24 -05:00
|
|
|
|
|
|
|
@cheatsheetItem
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(ts dart):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyService, useClass: MyMockService }`|`provide`|`useClass`
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(js):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyService, useClass: MyMockService }`|`provide`|`useClass`
|
2015-12-09 07:33:42 -05:00
|
|
|
description:
|
2015-11-06 07:26:24 -05:00
|
|
|
Sets or overrides the provider for MyService to the MyMockService class.
|
|
|
|
|
|
|
|
|
|
|
|
@cheatsheetItem
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(ts dart):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyService, useFactory: myFactory }`|`provide`|`useFactory`
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(js):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyService, useFactory: myFactory }`|`provide`|`useFactory`
|
2015-12-09 07:33:42 -05:00
|
|
|
description:
|
2015-11-06 07:26:24 -05:00
|
|
|
Sets or overrides the provider for MyService to the myFactory factory function.
|
|
|
|
|
|
|
|
|
|
|
|
@cheatsheetItem
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(ts dart):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyValue, useValue: 41 }`|`provide`|`useValue`
|
2015-12-12 22:17:26 -05:00
|
|
|
syntax(js):
|
2016-06-15 18:11:39 -04:00
|
|
|
`{ provide: MyValue, useValue: 41 }`|`provide`|`useValue`
|
2015-12-09 07:33:42 -05:00
|
|
|
description:
|
2015-11-06 07:26:24 -05:00
|
|
|
Sets or overrides the provider for MyValue to the value 41.
|