3
角度2ディレクティブで定義されたメソッドを呼び出すためにどのように、私が注入されているディレクティブは私は2角度に新しいです
@Component({
selector: 'select-me',
templateUrl: 'app/template.html',
directives: [BackgroundChange] // I want to access this same instance to make the dynamic changes
})
export class PageComponent {
constructor(private backgroundChange:BackgroundChange) {
// I guess this will create new instance of BackgroundChange
}
}
私はPageComponentから動的にいくつかの変更を行うにはBackgroundChangeで空くのメソッドを呼び出したいです