例如,我很感兴趣如何TemplateRef
通过传递 a来获得 a string
。
我不想通过组件 html 获取它,因为我只想将它保存在配置中以用于所有组件。我指的NgbDatePickerConfig
是可以在此处查看的 ng-bootstrap:https ://github.com/ng-bootstrap/ng-bootstrap/blob/master/src/datepicker/datepicker-config.ts 。
例如,我很感兴趣如何TemplateRef
通过传递 a来获得 a string
。
我不想通过组件 html 获取它,因为我只想将它保存在配置中以用于所有组件。我指的NgbDatePickerConfig
是可以在此处查看的 ng-bootstrap:https ://github.com/ng-bootstrap/ng-bootstrap/blob/master/src/datepicker/datepicker-config.ts 。
正如 Günter Zöchbauer 指出的那样,这是不可能的,而且它可能不太有用,因为您经常想要捕获功能,template
因此您需要一个组件。
但是,目前创建一个仅用于获取 a 的隔离组件并不容易TemplateRef
,因为您需要 aViewContainerRef
才能做到这一点。当前针对的 Angular 2 问题:https ://github.com/angular/angular/issues/9293 。