我们说我们有一个构造函数:
constructor(private el: ElementRef) {
// Some code here
}
在某些时候,开发人员决定以这种方式添加一个新参数:
constructor(private el: ElementRef,
private config: Config) {
// Some code here
}
有没有办法阻止这种情况并迫使开发人员使用这种格式:
constructor(private el: ElementRef, private config: Config) {
// Some code here
}
这种格式:
constructor(
private el: ElementRef,
private config: Config,
) {
// Some code here
}