以下は私のユーザーオブジェクトです。私がフォームを提出すると、私はpriPhone、mobilePhoneと一緒に値を得ています。角度で変数をマージ/追加する方法
this.user = {
isActive: 1,
contactDetails: {
name: { }
},
};
}
mobilePhone:any={phoneNumber: '',type:'Mobile'};
primaryPhone:any={phoneNumber: '',type:'Primary'};
ユーザーオブジェクトにmobilePhone、primaryPhoneの詳細を設定する必要があります。 私はこのような最終的なオブジェクトが欲しいので。
this.user = {
isActive: 1,
contactDetails: {
name: { }
},
phoneNumbers: [{
phoneNumber: '',
type: 'Primary'
}, {
phoneNumber: '',
type: 'Mobile'
}]
};
どうすればよいですか?
'this.user.phoneNumbers = [mobilePhone、primaryPhone];' – baao