Angular 2:使用@Input和@Output参数动态加载组件

前端之家收集整理的这篇文章主要介绍了Angular 2:使用@Input和@Output参数动态加载组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目前我正在用这段代码动态加载我的一些组件.
export class ComponentOutlet {

    constructor(
        private vcRef: ViewContainerRef,private compiler: Compiler,private dataService: DataService
    ) { }

    private _createDynamicComponent() {

        // Some logic to decide which component should be loaded
        return MyComponent;
    }


    ngOnChanges() {

        this.compiler.compileComponentAsync(this._createDynamicComponent())
            .then(factory => {
                const injector = ReflectiveInjector.fromResolvedProviders([],this.vcRef.parentInjector);
                this.vcRef.clear();
                this.vcRef.createComponent(factory,injector);
            });
    }

问题是MyComponent有一些@Input和Output绑定.可以在这里设置此绑定吗?我怎样才能做到这一点?

对输入和输出的绑定只能用于静态添加到另一个组件模板的组件.

在你的情况下,你可以这样做

var cmpRef = this.vcRef.createComponent(factory,injector);
 cmpRef.instance.someInput = value;
 cmpRef.instance.someOutput.subscribe(data => this.data = data);
原文链接:https://www.f2er.com/angularjs/142237.html

猜你在找的Angularjs相关文章