在Angular 9中,如果一个类没有被Angular装饰器修饰,它将无法通过依赖注入创建。解决这个问题的方法是为该类添加相应的Angular装饰器。
下面是一个示例代码,展示了如何解决这个问题:
// 导入Angular装饰器
import { Injectable } from '@angular/core';
// 使用@Injectable装饰器修饰类
@Injectable()
export class MyService {
constructor() {
// 这里是类的构造函数
}
// 类的其他方法
// ...
}
在上面的示例中,使用@Injectable()
装饰器修饰了MyService
类。这样,MyService
类就可以通过依赖注入来创建了。
确保在使用依赖注入创建类的时候,将其添加为提供者(providers)的一部分,或者在组件的构造函数中声明它。
import { Component } from '@angular/core';
import { MyService } from './my-service';
@Component({
selector: 'app-my-component',
template: `
My Component
`,
providers: [MyService] // 将MyService添加为提供者
})
export class MyComponent {
constructor(private myService: MyService) {
// ...
}
}
在上面的示例中,MyService
被添加为MyComponent
组件的提供者,这样就可以在MyComponent
的构造函数中使用依赖注入来创建MyService
类的实例了。
请注意,除了@Injectable()
装饰器,还有其他的Angular装饰器,如@Component
、@Directive
、@Pipe
等,根据实际情况选择适合的装饰器来修饰类。