我正在尝试克隆和更新要作为新实例存储在数组中的对象。但不起作用。
有人帮我解决这个问题吗?
这是我的尝试:
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
}