我正在尝试这样做:
export class TypedService {
protected baseUrl: string;
constructor(section: string, protected http: HttpClient) {
this.baseUrl = `${environment.apiUri}/${section}`;
}
其中intent是子类将调用构造函数并将section
传递给baseUrl
。但是,这样做会失败,因为它希望子类也传递http
参数。
基类是否可以注入这样的值,但仍然有子类传递值?