我需要将路由器插座的“名称”读入服务中。 示例:服务从组件输入引用(带有“this”),此服务需要知道组件加载的路由器出口名称。
HTML:
<router-outlet name="hello"><router-outlet>
在ruoter-outlet中加载的组件:
service_name.getComponet(this); // a reference of the component
在服务中:
public getComponent(comp: any) {
compName = //?? how can i read the name "hello"?
}