使用新值复制和更新对象并存储到数组

时间:2018-05-11 06:19:29

标签: angular typescript angular5

我正在尝试克隆和更新要作为新实例存储在数组中的对象。但不起作用。

有人帮我解决这个问题吗?

这是我的尝试:

 public getAppPropeties(locales):Observable<any>{

        const msgParms = [];

        locales.forEach((locale, i) => {

            this.messageParam['bd']['locale']=String(locale);

            msgParms[i] = Object.assign({}, this.messageParam);    ;

        });

        console.log( 'msgParms', msgParms ); //getting last value

}

0 个答案:

没有答案