在Angular 7中,可以将指令注入为提供者。以下是一个示例解决方法:
import { Directive } from '@angular/core';
@Directive({
selector: '[myDirective]',
providers: [
{ provide: 'myService', useValue: 'Injected service' }
]
})
export class MyDirective {
constructor() { }
}
import { Component, Inject } from '@angular/core';
@Component({
selector: 'my-component',
template: `
`
})
export class MyComponent {
constructor(@Inject('myService') private myService: any) { }
}
在上面的示例中,MyDirective将myService注入为提供者。然后,MyComponent使用@Inject装饰器将myService注入为类的依赖项。
请注意,这种方法是通过字符串令牌提供和注入服务的一种方式。如果你更喜欢使用类作为令牌,可以将提供者更改为以下形式:
import { MyService } from './my-service';
providers: [
{ provide: MyService, useValue: new MyService() }
]
然后,你可以使用类名作为依赖项注入服务:
constructor(private myService: MyService) { }
这样做的好处是可以使用类型检查,并且更容易进行重构。