Github:https ://github.com/danielhdz56/storybook-demo.git
在组件中注入服务总是会在故事书中引发错误:
Error: Can't resolve all parameters for CustomService: (?).
一个示例组件:
@Component({
selector: 'app-custom-selector',
templateUrl: './custom-selector.component.html',
styleUrls: ['./custom-selector.component.scss'],
})
export class NavigationItemComponent {
constructor(private customService: CustomService) {}
}