在Angular风格指南中,组件的服务应该放在与组件同级的文件夹中。这种组织方式使得组件及其相关的服务能够更好地归类和管理。以下是一个示例解决方法:
my-component
的组件文件夹,然后在文件夹中创建组件代码文件和服务代码文件。my-component/
my-component.component.ts
my-component.component.html
my-component.component.css
my-component.service.ts
my-component.component.ts
文件中,导入并使用MyComponentService
服务。import { Component } from '@angular/core';
import { MyComponentService } from './my-component.service';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent {
constructor(private myComponentService: MyComponentService) {
// 使用MyComponentService的代码
}
}
my-component.service.ts
文件中,定义并实现MyComponentService
服务。import { Injectable } from '@angular/core';
@Injectable()
export class MyComponentService {
// 服务的代码
}
通过将组件和服务放在同一个文件夹中,可以更好地组织和管理代码,并增加代码的可读性和可维护性。