いくつかの入力フィールドを持つ複数の動的コンポーネントを作成しました。ここで、[送信] ボタンをクリックしながら、すべての入力値を他のコンポーネントに送信したいと考えています。
シナリオは、
- Add ボタンを 5 回クリックします。これで、入力フィールドを含む 5 つの行が作成されます
- 次に、送信ボタンをクリックすると、すべての入力値が警告されます。ここで、 @Input/@Output を使用しようとしたが、実行できなかった問題。
import { Component, ViewContainerRef, ElementRef, ComponentRef, ComponentResolver, ViewChild } from '@angular/core';
@Component({
template: `
<div id=item{{_idx}} style="border: 1px solid red">Test Component
<input type="text"/>
<button (click)="remove()">Remove</button>
<button (click)="add1()">Add</button>
</div>`
})
class DynamicCmp {
_ref: ComponentRef;
_idx: number;
constructor(private resolver: ComponentResolver, private location:ViewContainerRef) { }
remove() {
this._ref.destroy();
}
add1() {
this.resolver.resolveComponent(DynamicCmp).then((factory:ComponentFactory<any>) => {
let ref = this.location.createComponent(factory, 0);
// this._dcl.loadNextToLocation(DynamicCmp, this._e).then((ref) => {
ref.instance._ref = ref;
ref.instance._idx = this._idx++;
});
}
}
@Component({
selector: 'my-app',
template: `
<button (click) = "add()" > Add new component </button >
<button (click) = "submit()" > Submit </button >
<button (click) = "removeall()" > Remove All </button >
<div class="ttt11" id="ttt" #location ></div>
`
})
export class AddRemoveDynamic {
idx: number = 0;
@ViewChild('location', {read: ViewContainerRef}) location:ViewContainerRef;
constructor(private resolver: ComponentResolver) { }
add() {
this.resolver.resolveComponent(DynamicCmp).then((factory:ComponentFactory<any>) => {
let ref = this.location.createComponent(factory)
// this._dcl.loadIntoLocation(DynamicCmp, this._e, 'location').then((ref) => {
ref.instance._ref = ref;
ref.instance._idx = this.idx++;
});
}
submit(){
}
}
これについて私を助けてもらえますか?
どうぞよろしくお願いいたします。前もって感謝します。