我正在以通常的方式创建一个动态组件,如下所示。
const formRowFactory = this.resolver.resolveComponentFactory(FormRowComponent);
const { instance: formRowComponent } = this.newComponents.createComponent(formRowFactory);
formRowComponent.name = categoryName;
我将它的索引存储在别处,以便检索组件
const component = this.newComponents.get(index);
然后我想编辑名称,但我做不到。它不允许我访问该实例,或者没有更改它的功能。
你是怎么做到的?顺便说一句,在 Angular 中编辑内容子项非常容易。为什么对动态的如此苛刻?