“Obiekt klonu typucript” Kod odpowiedzi

Obiekt klonów w TypeScript

//1.Shallow copy:
let Copy = {...yourObject}
//2.Deep Copy: a. through recusive typing functionality:
let Cone = DeepCopy(yourObject);
public DeepCopy(object: any): any
{
  if(object === null)
  {
    return null;
  }
  const returnObj = {};
  Object.entries(object).forEach(
  ([key, value]) =>{
    const objType = typeof value
  if(objType !== "object" || value === null){
     returnObj[key] = value;
  }
  else{
  	returnObj[key] = DeepCopy(value);
  }
}
//b.Hardway: repeat the following expanstions for all complex types as deep as you need
let Copy = {...yourObject, yourObjsComplexProp: {...yourObject.yourObjsComplexProp}}
TheCodeTrooper

Obiekt klonu typucript

import _ from "lodash"

const obj = { foo: "bar" }
const clone = _.cloneDeep(obj);
Jens

Odpowiedzi podobne do “Obiekt klonu typucript”

Pytania podobne do “Obiekt klonu typucript”

Więcej pokrewnych odpowiedzi na “Obiekt klonu typucript” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu