angular2: how to copy object into another object

后端 未结 8 821
失恋的感觉
失恋的感觉 2021-01-30 10:05

Please help me in order to copy the object into another object using angular 2?

In angular, I used angular.copy() to copy objects to the loose reference of the old object

8条回答
  •  萌比男神i
    2021-01-30 10:39

    Solution

    Angular2 developed on the ground of modern technologies like TypeScript and ES6.

    So you can just do let copy = Object.assign({}, myObject).

    Object assign - nice examples.

    For nested objects : let copy = JSON.parse(JSON.stringify(myObject))

提交回复
热议问题