0

我有一个我不理解 ReactiveForms 的错误。

roomsGroup 的输出 var 返回一个对象数组,如我所愿。

然后我使用扩展运算符将所有对象传递给 roomingGroup 中的表单组。但只设置了第一个对象。

我不知道我必须做什么才能让它工作。

任何的想法 ?

export function roomingGroup (fb: any) {
    return fb.group(
        ...roomsGroup(fb)
    );
}

function roomsGroup (fb) {
    let output = [];

    for (let i = 1; i < 4; i++) {
        let nameOfProperty = 'R' + i;

        output.push({
            [nameOfProperty]: fb.group({
                quantity: fb.group({
                    adult: [''],
                    child: ['']
                })
            })
        })
    }

    return output;
}
4

1 回答 1

0

我想要输出对象。所以我必须使用对象:

let output = {};

for (let i = 0; i < count; i++) {
    let nameOfProperty = 'R' + (i + 1);

    output = (<any>Object).assign(output, {
        [nameOfProperty]: fb.group({
            quantity: fb.group({
                adult: [''],
                child: ['']
            })
    })})
}

return output;

这就是我的解决方案。

于 2017-10-12T13:10:27.253 回答