最佳答案
我想将一个服务注入到一个类 不是成分中。
例如:
我的服务
import {Injectable} from '@angular/core';
@Injectable()
export class myService {
dosomething() {
// implementation
}
}
MyClass
import { myService } from './myService'
export class MyClass {
constructor(private myservice:myService) {
}
test() {
this.myservice.dosomething();
}
}
我试过了,但是没有用。看起来服务只需要在组件或服务中使用。
Is there a way to use a service in a normal class? or it's a bad practice to use a service in a normal class.
谢谢你。